/* ========================================
   D-VOUCHER SPECIFIC STYLES
   ======================================== */

.dv-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff200;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dv-loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.dv-loading-content {
    text-align: center;
    color: #333;
}

.dv-loading-spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 20px;
}

.dv-loading-spinner::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #474747;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    animation: trueCircle 1.5s linear infinite;
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 0.3);
}

/* Animation moved to common.css to prevent duplication */

.dv-loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.dv-loading-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dv-main-layout {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.dv-form-main-layout {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background: #FFF200;
}

.dv-left-column {
    display: none;
}



.dv-right-column {
    flex: 0 0 100%;
    max-width: 800px;
    min-height: 100vh;
    background: #FFF200;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    overflow-y: auto;
}

.dv-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 226, 35, 0.3);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 193, 7, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Removed hover transform effect */

.dv-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-bottom: 3px solid rgba(255, 193, 7, 0.2);
}

.dv-header.header-hidden {
    transform: translateY(-100%);
}

.dv-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}


.dv-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 1;
}

.dv-header h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}

.dv-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #333;
    position: relative;
    z-index: 1;
}

.dv-header-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.dv-form-container {
    padding: 25px;
    position: relative;
    min-height: 500px;
    background: #ffffff;
    overflow-y: auto;
}

.dv-form-section {
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease;
}

.dv-form-section:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dv-section-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 179, 0, 0.15) 100%) !important;
    padding: 20px 25px !important;
    border-radius: 15px !important;
    margin: 30px 0 25px 0 !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}


.dv-section-header:hover::before {
    left: 100%;
}

/* Removed section header hover background */

.dv-section-header h3 {
    margin: 0 !important;
    color: #333 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 1 !important;
}

.dv-form-group {
    margin-bottom: 15px !important;
    position: relative !important;
}

.dv-form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 0.9rem !important;
    position: relative !important;
}

/* Removed label underline effect */

/* Base form input styles */
.dv-form-group input,
.dv-form-group select,
.dv-form-group textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
    font-family: 'Prompt', sans-serif !important;
    box-sizing: border-box !important;
    height: 44px !important;
    line-height: 1.2 !important;
}

/* Textarea specific styles */
.dv-form-group textarea {
    height: auto !important;
    min-height: 80px !important;
    resize: vertical !important;
}

/* Readonly field styles */
.readonly-field {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    cursor: not-allowed !important;
    border-color: #e9ecef !important;
}

/* Digital Provider Wrapper - Container for provider info outside main form */
.digital-provider-wrapper {
    max-width: 100% !important;
    margin: 0 auto 15px auto !important;
    padding: 0 !important;
}

/* Digital Provider Section - Styled to match form theme */
.digital-provider-section {
    background: #ffffff !important;
    border: 2px solid rgba(255, 193, 7, 0.3) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 20px 40px rgba(255, 226, 35, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
}


.digital-provider-section .dv-section-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%) !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
    border-radius: 15px !important;
    padding: 20px 25px !important;
    margin: 0 0 25px 0 !important;
}

.digital-provider-section .dv-section-header h3 {
    color: #333 !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 !important;
}

.digital-provider-section .readonly-field {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(255, 193, 7, 0.4) !important;
    color: #333 !important;
    font-weight: 600 !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.digital-provider-section .readonly-field::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent) !important;
    transition: left 2s ease !important;
}

.digital-provider-section .readonly-field:hover::before {
    left: 100% !important;
}


/* Focus border color for form inputs */
.dv-form-group input:focus,
.dv-form-group select:focus,
.dv-form-group textarea:focus {
    outline: none !important;
    border-color: #ffc107 !important;
    border-width: 2px !important;
}

.dv-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

/* Radio Button Styles */
.radio-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.radio-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
}

.radio-item:hover {
    background: rgba(255, 193, 7, 0.1) !important;
    transform: translateY(-1px) !important;
    border-color: #ffc107 !important;
}

.radio-item input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    cursor: pointer !important;
    accent-color: #ffc107 !important;
    transform: scale(1.2) !important;
}

.radio-item label {
    margin: 0 !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    color: #333 !important;
}

/* Form Header - Separated from form wrapper */
.dv-form-header {
    background: #ffffff;
    color: #333;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 193, 7, 0.2);
    margin-top: 100px;
    margin-bottom: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 226, 35, 0.2);
}

.dv-form-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.dv-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

    .dv-form-header p {
        margin: 0;
        font-size: 1rem;
        color: #666;
        font-weight: 400;
    }

/* Responsive styles for form-header */
@media (max-width: 768px) {
    .dv-form-header {
        padding: 20px 15px;
        margin-top: 80px;
        margin-bottom: 8px;
        border-radius: 15px;
    }
    
    .dv-form-wrapper {
        border-radius: 15px;
    }
    
    .dv-form-header h1 {
        font-size: 1.5rem;
    }
    
    .dv-form-header h2 {
        font-size: 1rem;
    }
    
    .dv-form-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dv-form-header {
        padding: 15px 10px;
        margin-top: 70px;
        margin-bottom: 5px;
        border-radius: 12px;
    }
    
    .dv-form-wrapper {
        border-radius: 12px;
    }
    
    .dv-form-header h1 {
        font-size: 1.3rem;
    }
    
    .dv-form-header h2 {
        font-size: 0.9rem;
    }
    
    .dv-form-header p {
        font-size: 0.8rem;
    }
}

.submit-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
}

.submit-notice {
    background: #ffffff;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
    color: #856404;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-notice p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.business-category-section {
    background: rgba(255, 193, 7, 0.08);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.business-category-section h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.business-type-section {
    background: rgba(255, 193, 7, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.business-type-section h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.document-section {
    background: rgba(255, 193, 7, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: none !important;
    animation: none !important;
}

.document-section h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 8px;
}

.document-subsection {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.document-subsection h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}

.consent-content {
    background: rgba(255, 193, 7, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
    max-height: 400px;
    overflow-y: auto;
}

.consent-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

.consent-content strong {
    color: #ffc107;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-layout,
    .form-main-layout {
        flex-direction: column;
    }
    
    .right-column {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }
    
    .form-wrapper {
        max-width: none;
    }
}

/* Mobile-first responsive design */
@media (max-width: 992px) {
    .dv-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .dv-right-column {
        max-width: 100%;
        padding: 10px;
    }
    
    .dv-form-row {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }
    
    .dv-header-logo {
        max-height: 80px;
    }
    
    .dv-header p {
        font-size: 0.85rem;
    }
    
    .dv-form-container {
        padding: 15px;
    }

    .dv-form-section {
        margin-bottom: 30px;
    }

    .dv-section-header {
        padding: 12px 15px;
        margin: 20px 0 15px 0;
    }

    .dv-section-header h3 {
        font-size: 1rem;
    }

    .dv-form-group {
        margin-bottom: 15px;
    }

    .dv-form-group label {
        font-size: 0.8rem;
    }

    .dv-form-group input,
    .dv-form-group select,
    .dv-form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .radio-item {
        padding: 8px 10px;
    }

    .radio-item label {
        font-size: 0.85rem;
    }

    .business-category-section,
    .business-type-section {
        padding: 12px;
        margin: 12px 0;
    }

    .document-section {
        padding: 15px;
        margin: 15px 0;
    }

    .document-subsection {
        padding: 12px;
        margin: 12px 0;
    }

    .consent-content {
        padding: 15px;
        max-height: 300px;
    }

    .consent-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .submit-section {
        margin-top: 25px;
        padding-top: 15px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 120px;
    }


}

@media (max-width: 480px) {
    .dv-right-column {
        padding: 10px;
    }
    
    .dv-form-container {
        padding: 10px;
    }
    
    .dv-header {
        padding: 20px 15px;
    }
    
    .dv-header-logo {
        max-height: 60px;
    }
    
    .dv-form-group input,
    .dv-form-group select,
    .dv-form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
    
    .file-upload-label {
        font-size: 0.8rem;
        padding: 8px 10px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .document-section {
        padding: 10px;
        margin: 10px 0;
    }
    
    .consent-content {
        padding: 10px;
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .radio-group {
        gap: 8px;
    }
    
    .radio-item {
        padding: 10px;
    }
    
    .business-category-section,
    .business-type-section {
        padding: 10px;
    }
    
    .document-section {
        padding: 12px;
    }
    
    .consent-content {
        padding: 12px;
        max-height: 250px;
    }

    .section-header {
        padding: 10px 12px;
        margin: 15px 0 10px 0;
    }

    .section-header h3 {
        font-size: 0.95rem;
    }

    .form-section {
        margin-bottom: 25px;
    }
}

@media (max-width: 360px) {
    .right-column {
        padding: 8px;
    }
    
    .form-container {
        padding: 8px;
    }
    
    .header {
        padding: 15px 10px;
    }
    
    .header h1 {
        font-size: 1.2rem;
    }
    
    .header h2 {
        font-size: 1rem;
    }
    
    .header p {
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
        font-size: 16px;
    }
    
    .radio-item {
        padding: 8px;
    }
    
    .radio-item label {
        font-size: 0.8rem;
    }
    
    .business-category-section,
    .business-type-section {
        padding: 8px;
        margin: 8px 0;
    }
    
    .document-section {
        padding: 10px;
        margin: 10px 0;
    }
    
    .document-subsection {
        padding: 8px;
        margin: 8px 0;
    }
    
    .consent-content {
        padding: 10px;
        max-height: 200px;
    }
    
    .consent-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .submit-section {
        margin-top: 20px;
        padding-top: 12px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Selection Page Styles */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/AI-Transform-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.selection-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.selection-header {
    background: transparent;
    color: #333;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.selection-header-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.selection-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #333;
    position: relative;
    z-index: 1;
}

.selection-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.selection-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 450px;
    min-width: 300px;
}

/* Selection card hover effect */
.selection-card:hover {
    transform: translateY(-6px);
}



.card-icon {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .card-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .card-icon {
        margin-bottom: 15px;
    }
}

.icon-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 127px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    margin: 0 auto;
    display: block;
}



.card-button {
    text-align: center;
}

.selection-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    width: 100%;
    max-width: 400px;
    font-family: 'Prompt', sans-serif;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    display: block;
}

.selection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.selection-btn:active::before {
    left: 100%;
}

.selection-btn:active {
    transform: translateY(-2px);
}

.selection-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.selection-btn:active i {
    transform: translateX(3px);
}


/* Responsive Design for Selection Page */
@media (max-width: 1024px) {
    .selection-cards {
        gap: 25px;
    }
    
    .selection-card {
        min-width: 280px;
    }
    
    .icon-image {
        max-width: 350px;
        max-height: 110px;
    }
    
    .selection-btn {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .selection-container {
        padding: 15px;
    }

    .selection-header {
        margin-top: 50px;
    }
    
    .selection-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 30px 0;
    }
    
    .selection-card {
        padding: 30px 20px;
        max-width: 90%;
        min-width: auto;
        width: 90%;
        box-sizing: border-box;
    }
    
    .selection-header-logo {
        max-height: 80px;
    }
    
    .selection-header p {
        font-size: 0.85rem;
    }
    
    .icon-image {
        max-width: 280px;
        max-height: 90px;
    }
    
    .selection-btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 120px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .selection-container {
        padding: 10px;
    }

    .selection-header {
        margin-top: 50px;
    }
    
    .selection-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 20px 0;
    }
    
    .selection-card {
        padding: 25px 15px;
        max-width: 85%;
        min-width: auto;
        width: 85%;
        box-sizing: border-box;
    }
    
    .selection-header-logo {
        max-height: 60px;
    }

    .selection-header p {
        font-size: 0.8rem;
    }
    
    .icon-image {
        max-width: 250px;
        max-height: 80px;
    }
    
    .selection-btn {
        width: 100%;
        padding: 15px;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px; /* Minimum touch target size */
    }
    
    /* Disable hover effects on touch devices */
    .selection-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 193, 7, 0.3);
    }
}
    
    .radio-item {
        min-height: 44px;
    }
    
    .submit-btn {
        min-height: 48px;
    }
    
    .file-upload-label {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .dv-header {
        padding: 15px 20px;
    }
    
    .dv-header h1 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .dv-header h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .dv-form-container {
        padding: 10px 15px;
    }
    
    .dv-form-section {
        margin-bottom: 20px;
    }
    
    .dv-section-header {
        padding: 10px 15px;
        margin: 15px 0 10px 0;
    }
    
    /* Mobile responsive for digital provider section */
    .digital-provider-wrapper {
        padding: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .digital-provider-section {
        padding: 20px !important;
        margin-bottom: 0 !important;
        border-radius: 15px !important;
    }
    
    .digital-provider-section .dv-section-header h3 {
        font-size: 1.2rem !important;
    }
    
    .digital-provider-section .readonly-field {
        font-size: 0.9rem !important;
        padding: 10px 12px !important;
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1) !important;
    }
    
}

