/* Auto-extracted from resources/views/admission.blade.php */

.admission-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .admission-nav-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 32px;
        padding: 0;
        box-sizing: border-box;
    }

    .admission-nav-tabs {
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        padding: 8px;
        border-radius: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .admission-tab-btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 12px 16px;
        border-radius: 12px;
        color: #666;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        font-size: 14px;
        white-space: normal;
        line-height: 1.3;
    }

    .admission-tab-btn.active {
        background: #2971b7;
        color: white;
        box-shadow: 0 4px 12px rgba(41, 113, 183, 0.25);
    }

    .admission-tab-btn:hover {
        color: #2971b7;
        text-decoration: none;
    }

    .admission-tab-btn.active:hover {
        color: white;
    }

    .admission-program-card {
        background: white;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 24px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        min-width: 0;
    }

    .admission-program-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        border-color: #2971b7;
    }

    .program-name {
        font-size: clamp(18px, 4vw, 1.5rem);
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
        text-transform: uppercase;
        word-wrap: break-word;
    }

    .program-detail-item {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #555;
        text-align: left;
        flex-wrap: wrap;
    }

    .detail-label {
        font-weight: 500;
        color: #888;
    }

    .detail-value {
        font-weight: 600;
        color: #222;
        text-align: right;
    }

    .program-actions {
        margin-top: auto;
        padding-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .btn-apply,
    .btn-login-admission {
        border-radius: 12px;
        padding: 12px 14px;
        font-weight: 700;
        text-decoration: none;
        font-size: 13px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .btn-apply {
        background: #2971b7;
        color: white;
    }

    .btn-apply:hover {
        background: #1e5a9a;
        color: white;
    }

    .btn-login-admission {
        background: #f0f7ff;
        color: #2971b7;
    }

    .btn-login-admission:hover {
        background: #e1effe;
        color: #1e5a9a;
    }

    .important-dates-table {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 100%;
    }

    .table-responsive-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .important-dates-table table {
        width: 100%;
        min-width: 520px;
        margin-bottom: 0;
    }

    .important-dates-table thead th {
        background: #2971b7;
        color: white;
        padding: 14px 12px;
        font-weight: 600;
        border: none;
        font-size: 13px;
        white-space: nowrap;
    }

    .important-dates-table tbody td {
        padding: 12px;
        font-size: 14px;
        vertical-align: middle;
    }

    .admission-empty-state {
        padding: 48px 20px;
        text-align: center;
        background: #fff;
        border-radius: 16px;
        border: 1px dashed #cbd5e1;
    }

    .admission-empty-state .empty-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .admission-programs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        width: 100%;
    }

    .detail-value.is-primary {
        color: #2971b7;
    }

    .detail-value.is-danger {
        color: #dc3545;
    }

    .admission-empty-state p {
        color: #64748b;
        margin: 0;
    }

    .dates-table {
        width: 100%;
        border-collapse: collapse;
    }

    .dates-table tbody tr:hover {
        background: #f8fafc;
    }

    .dates-empty {
        text-align: center;
        padding: 32px 16px;
        color: #64748b;
    }

    .dates-deadline {
        color: #dc3545;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .program-actions {
            grid-template-columns: 1fr;
        }

        .admission-tab-btn {
            flex: 1 1 100%;
        }

        .admission-program-card {
            padding: 20px 16px;
        }

        .program-detail-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .detail-value {
            text-align: left;
        }
    }
