
/** PDF CONVERTER CUSTOM STYLES **/

.url-converter-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.url-converter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.url-converter-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.option-box {
    padding: 20px;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.option-box:hover {
    transform: translateY(-5px);
}

.option-box h5 {
    margin: 15px 0 10px 0;
    color: #333;
    font-weight: 600;
}

.option-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Pricing table enhancements */
.pricing-table-highlighted {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table-highlighted:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Custom button styles */
.btn-converter {
    background: linear-gradient(45deg, #007bff, #28a745);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-converter:hover {
    background: linear-gradient(45deg, #0056b3, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}