/* Auto-extracted from resources/views/website/examinations/index.blade.php */

.exam-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 28px;
        align-items: start;
    }

    .exam-tabs {
        overflow: hidden;
        padding: 12px;
    }

    .exam-tab-link {
        display: block;
        padding: 18px 20px;
        border-radius: 12px;
        color: #0f172a;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: 0.2s ease;
    }

    .exam-tab-link:hover {
        background: #dbeafe;
        color: #0f172a;
        text-decoration: none;
    }

    .exam-tab-link.active {
        background: #1f7ac1;
        color: #fff;
    }

    .exam-content {
        padding: 28px;
    }

    .exam-content-header {
        margin-bottom: 24px;
    }

    .exam-content-header h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #0f172a;
    }

    .exam-content-header p {
        margin: 0;
        color: #64748b;
    }

    .exam-items {
        display: grid;
        gap: 20px;
    }

    .exam-item-card {
        padding: 24px;
    }

    .exam-item-meta {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        color: #64748b;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .exam-item-card h3 {
        font-size: 24px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .exam-item-card p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .exam-document-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        padding: 16px 18px;
        border: 1px solid #dbe4f0;
        border-radius: 14px;
        background: #f8fbff;
        margin-top: 18px;
    }

    .exam-document-name {
        font-weight: 600;
        color: #0f172a;
    }

    .exam-document-meta {
        color: #64748b;
        font-size: 13px;
        margin-top: 4px;
        text-transform: uppercase;
    }

    @media (max-width: 991px) {
        .exam-layout {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .exam-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 10px;
        }

        .exam-tab-link {
            flex: 1 1 calc(50% - 8px);
            min-width: 0;
            padding: 14px 12px;
            font-size: 15px;
            text-align: center;
        }

        .exam-content {
            padding: 20px 16px;
        }

        .exam-content-header h2 {
            font-size: clamp(22px, 5vw, 28px);
        }

        .exam-document-box {
            flex-direction: column;
            align-items: stretch;
        }

        .exam-document-box .action-button {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .exam-tab-link {
            flex: 1 1 100%;
        }

        .exam-content {
            padding: 16px 12px;
        }

        .exam-item-card {
            padding: 16px;
        }
    }
