/* ============================================
   WT Job Application Form — KKE Branding v2.0
   Colors: #272727, #2596be, #f7a352, #f8f8f8
   Font: Prompt (Google Fonts)
   ============================================ */

/* Container */
.wt-job-app-container {
    max-width: 950px;
    margin: 30px auto;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Prompt', sans-serif;
}

/* Header */
.wt-job-app-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2596be;
}

.wt-job-app-header img.wt-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wt-job-app-header h2 {
    color: #2596be;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Required Mark (*) */
.wt-required-mark {
    color: #d32f2f;
    font-weight: 700;
    margin-left: 2px;
}

/* Required Note */
.wt-required-note {
    font-size: 13px;
    color: #888;
    margin: 10px 0 0 0;
    font-weight: 500;
}

/* Progress Steps */
.wt-job-app-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px;
}

.wt-job-app-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
    border-radius: 2px;
}

.step-indicator {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-indicator.active {
    background: #f7a352;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(247, 163, 82, 0.4);
}

.step-indicator.completed {
    background: #2596be;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    color: #ffffff;
    background: linear-gradient(135deg, #2596be 0%, #1e7da3 100%);
    padding: 16px 20px;
    margin: 0 0 30px 0;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(37, 150, 190, 0.2);
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    min-width: 0;
}

/* Special row for personal info: title narrow, name fields flexible */
.form-row.personal-row-1 {
    grid-template-columns: 140px 1fr 1fr;
}

/* Special row for English name: title narrow, names flexible */
.form-row.personal-row-2 {
    grid-template-columns: 140px 1fr 1fr;
}

/* Special row for ID card, birthdate, and age */
.form-row.id-birthdate-age {
    grid-template-columns: 2fr 2fr 1fr;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #272727;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Prompt', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
    color: #272727;
    font-weight: 500;
    line-height: 1.6;
    min-height: 46px;
    height: auto;
}

.form-group select {
    color: #272727;
    font-weight: 500;
    background-color: #ffffff;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding: 14px 16px;
    line-height: 1.6;
    height: auto;
    min-height: 46px;
}

.form-group select option {
    color: #272727;
    background-color: #ffffff;
    padding: 8px 12px;
    font-size: 15px;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="number"]:hover,
.form-group input[type="date"]:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #bbb;
    background: #fff;
    color: #272727;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2596be;
    background: #fff;
    color: #272727;
    box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.1);
}

/* Fix for select dropdown text visibility */
select option:checked,
select option:hover {
    background-color: #2596be !important;
    color: #ffffff !important;
}

select option {
    background-color: #ffffff !important;
    color: #272727 !important;
    font-size: 15px !important;
}

/* Error states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #d32f2f;
    background: #fff5f5;
}

.form-group input.error:focus,
.form-group select.error:focus {
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.checkbox-list.error {
    border-color: #d32f2f;
    background: #fff5f5;
}

/* Field error message under input */
.field-error-msg {
    color: #d32f2f;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-error-msg::before {
    content: '⚠';
    font-size: 13px;
}

/* Validation error summary */
.validation-error-list {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #d32f2f;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.validation-error-list h4 {
    color: #d32f2f;
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
}

.validation-error-list ul {
    margin: 0;
    padding-left: 20px;
    color: #272727;
}

.validation-error-list ul li {
    margin-bottom: 4px;
    font-size: 13px;
}

/* Auto-fill success message */
.autofill-success {
    color: #2e7d32;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    padding: 8px 12px;
    background: #e8f5e9;
    border-radius: 4px;
    border-left: 4px solid #4caf50;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Age field specific styling - ensure it matches other fields */
.form-group input#age {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    height: auto;
    min-height: 46px;
    padding: 12px 16px;
    box-sizing: border-box;
    flex: 1;
}

/* Salary field */
.form-group.salary-group {
    max-width: 350px;
}

.form-group.salary-group input {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.salary-hint {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* Checkbox List */
.checkbox-list {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
    background: #ffffff;
    transition: all 0.3s ease;
    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #2596be #e0e0e0;
}

/* WebKit scrollbar (Chrome, Safari, Edge) */
.checkbox-list::-webkit-scrollbar {
    width: 8px;
}

.checkbox-list::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.checkbox-list::-webkit-scrollbar-thumb {
    background: #2596be;
    border-radius: 4px;
    min-height: 40px;
}

.checkbox-list::-webkit-scrollbar-thumb:hover {
    background: #1e7da3;
}

.checkbox-list:hover {
    border-color: #bbb;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-weight: normal;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.checkbox-list label:hover {
    background: #e0f2f7;
    transform: translateX(5px);
}

.checkbox-list input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #2596be;
}

/* Checkbox Group */
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    padding: 8px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2596be;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
}

.form-navigation button {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #2596be 0%, #1e7da3 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.4);
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(0);
}

.btn-prev {
    background: #e8e8e8;
    color: #272727;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-prev:hover {
    background: #d4d4d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Step 6 Final Navigation */
.wt-final-navigation {
    position: relative;
    justify-content: center !important;
}

.wt-final-navigation .btn-prev {
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .wt-final-navigation {
        display: flex !important;
        flex-direction: column-reverse !important;
        position: static !important;
    }
    
    .wt-final-navigation .btn-prev {
        position: static !important;
        width: 100% !important;
    }
    
    .wt-final-navigation .btn-submit {
        width: 100% !important;
    }
}

/* Messages */
.wt-job-app-message {
    display: none;
    padding: 18px 20px;
    margin-top: 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wt-job-app-message.success {
    display: block;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border-left: 5px solid #2e7d32;
}

.wt-job-app-message.error {
    display: block;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: #fff;
    border-left: 5px solid #b71c1c;
}

/* File Upload */
input[type="file"] {
    padding: 15px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

input[type="file"]:hover {
    border-color: #2596be;
    background: #fff;
    box-shadow: 0 2px 8px rgba(37, 150, 190, 0.1);
}

input[type="file"]:focus {
    outline: none;
    border-color: #2596be;
    box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.1);
}

/* Terms Section */
.terms-label {
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #2596be;
}

.terms-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #2596be;
}

/* Radio buttons */
.form-group label input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2596be;
}

/* QR Code Section */
.qr-code-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.qr-code-block {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.qr-code-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-code-label {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

/* Privacy links */
.privacy-links {
    margin: 15px 0;
}

.privacy-links a {
    color: #2596be;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-links a:hover {
    color: #f7a352;
    text-decoration: underline;
}

/* Admin Table */
.wp-list-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wp-list-table th {
    background: linear-gradient(135deg, #2596be 0%, #1e7da3 100%);
    color: #fff;
    font-weight: 600;
    padding: 15px;
}

.wp-list-table td {
    padding: 12px 15px;
}

/* Admin Settings Page */
.wt-color-picker {
    width: 100px;
    height: 45px;
    padding: 3px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 6px;
}

.wt-color-picker::-webkit-color-swatch-wrapper {
    padding: 0;
}

.wt-color-picker::-webkit-color-swatch {
    border: 2px solid #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.settings-preview {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 10px;
}

/* Improved form table styling */
.form-table th {
    width: 220px;
    padding: 18px 15px 18px 0;
    font-weight: 600;
}

.form-table td {
    padding: 18px 15px;
}

.form-table input[type="color"] {
    margin-right: 12px;
}

/* Settings form description */
.form-table .description {
    margin-top: 8px;
    font-style: italic;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.form-table .description code {
    background: #f0f0f0;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #2596be;
    font-weight: 600;
}

/* Shortcode info box */
.notice-info {
    background: linear-gradient(135deg, #e0f2f7 0%, #b3e0f2 100%);
    border-left: 5px solid #2596be;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37, 150, 190, 0.15);
}

.notice-info h3 {
    color: #1e7da3;
    margin-top: 0;
}

.notice-info code {
    background: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px dashed #2596be;
    display: inline-block;
    margin: 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #2596be;
}

/* ============================================
   Responsive — Tablet (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    .wt-job-app-container {
        padding: 24px 18px;
        margin: 15px 10px;
        border-radius: 10px;
    }

    /* All grid rows → single column with proper spacing */
    .form-row,
    .form-row.personal-row-1,
    .form-row.personal-row-2,
    .form-row.id-birthdate-age {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Ensure each form group has breathing room */
    .form-group {
        margin-bottom: 20px;
    }

    .form-row .form-group {
        margin-bottom: 18px;
    }

    .form-row .form-group:last-child {
        margin-bottom: 10px;
    }

    /* Header */
    .wt-job-app-header {
        margin-bottom: 28px;
        padding-bottom: 16px;
    }

    .wt-job-app-header img.wt-logo {
        max-width: 160px;
        margin-bottom: 12px;
    }

    .wt-job-app-header h2 {
        font-size: 22px;
    }

    .wt-required-note {
        font-size: 12px;
        margin-top: 8px;
    }

    /* Steps */
    .wt-job-app-steps {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .wt-job-app-steps::before {
        left: 25px;
        right: 25px;
        top: 18px;
    }

    .step-indicator {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .step-indicator.active {
        transform: scale(1.1);
    }

    /* Step heading */
    .form-step h3 {
        font-size: 17px;
        padding: 14px 16px;
        margin-bottom: 22px;
    }

    /* Inputs — bigger touch targets */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group input[type="date"],
    .form-group select,
    .form-group textarea {
        padding: 14px 14px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 8px;
    }

    .form-group select {
        padding: 14px 14px;
        min-height: 50px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Checkbox lists */
    .checkbox-list {
        padding: 14px;
        max-height: 300px;
    }

    .checkbox-list label {
        padding: 12px 10px;
        font-size: 14px;
        margin-bottom: 2px;
    }

    .checkbox-list input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    /* Salary */
    .form-group.salary-group {
        max-width: 100%;
    }

    .form-group.salary-group input {
        font-size: 16px;
    }

    /* File upload */
    input[type="file"] {
        padding: 16px 12px;
        font-size: 14px;
    }

    /* Navigation buttons */
    .form-navigation {
        flex-direction: column-reverse;
        gap: 12px;
        margin-top: 30px;
        padding-top: 24px;
    }

    .form-navigation button {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    /* Terms */
    .terms-label {
        padding: 14px 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .terms-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-right: 10px;
        margin-top: 2px;
    }

    /* Radio buttons */
    .form-group label input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    /* QR codes */
    .qr-code-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qr-code-block {
        max-width: 240px;
        margin: 0 auto;
    }

    /* Privacy links */
    .privacy-links p {
        font-size: 13px;
        line-height: 1.7;
        word-break: break-word;
    }

    .privacy-links a {
        word-break: break-all;
    }

    /* Validation error */
    .validation-error-list {
        padding: 12px 14px;
    }

    .validation-error-list h4 {
        font-size: 14px;
    }

    .validation-error-list ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* Horizontal divider */
    hr {
        margin: 24px 0 !important;
    }
}

/* ============================================
   Responsive — Small phones (≤ 420px)
   ============================================ */
@media (max-width: 420px) {
    .wt-job-app-container {
        padding: 18px 14px;
        margin: 10px 6px;
        border-radius: 8px;
    }

    .wt-job-app-header h2 {
        font-size: 20px;
    }

    .wt-job-app-header img.wt-logo {
        max-width: 130px;
    }

    .step-indicator {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .wt-job-app-steps::before {
        left: 18px;
        right: 18px;
        top: 16px;
        height: 2px;
    }

    .wt-job-app-steps {
        padding: 0 4px;
    }

    .form-step h3 {
        font-size: 15px;
        padding: 12px 14px;
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group input[type="date"],
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 12px;
    }

    .form-navigation button {
        padding: 14px 16px;
        font-size: 15px;
    }

    .checkbox-list label {
        font-size: 13px;
        padding: 10px 8px;
    }

    .qr-code-block {
        max-width: 200px;
    }
}

/* Print styles */
@media print {
    .wt-job-app-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .form-navigation {
        display: none;
    }
}

/* ============================================
   Thank You Modal Styles
   ============================================ */

.wt-job-app-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wt-job-app-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.wt-job-app-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wt-job-app-modal-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

.wt-job-app-modal-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wt-job-app-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.wt-job-app-modal-body {
    padding: 30px;
    text-align: center;
}

.wt-job-app-modal-body p {
    font-size: 16px;
    color: #272727;
    line-height: 1.6;
    margin: 12px 0;
}

.wt-job-app-modal-info {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    text-align: left;
}

.wt-job-app-modal-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.wt-job-app-modal-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wt-job-app-modal-info-item strong {
    color: #2596be;
    font-weight: 600;
    font-size: 14px;
}

.wt-job-app-modal-info-item span {
    color: #272727;
    font-weight: 500;
    font-size: 14px;
}

.wt-job-app-modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.btn-modal-close {
    background: linear-gradient(135deg, #2596be 0%, #1e7da3 100%);
    color: #ffffff;
    border: none;
    padding: 14px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.3);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.4);
}

.btn-modal-close:active {
    transform: translateY(0);
}

/* Responsive modal */
@media (max-width: 768px) {
    .wt-job-app-modal {
        padding: 15px;
        align-items: flex-end;
    }

    .wt-job-app-modal-content {
        border-radius: 16px 16px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .wt-job-app-modal-header {
        padding: 28px 20px;
    }

    .wt-job-app-modal-header h3 {
        font-size: 20px;
    }

    .wt-job-app-modal-icon svg {
        width: 50px;
        height: 50px;
    }

    .wt-job-app-modal-body {
        padding: 22px 18px;
    }

    .wt-job-app-modal-body p {
        font-size: 14px;
    }

    .wt-job-app-modal-info {
        padding: 16px;
    }

    .wt-job-app-modal-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .wt-job-app-modal-footer {
        padding: 16px 18px 28px;
    }

    .btn-modal-close {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
}

