/* Common Exam Page Styles */
/* Shared styles across all exam-related pages */

/* ===== BREADCRUMB SECTION ===== */
.breadcrumb-section a {
    text-decoration: none;
}

.breadcrumb-section span {
    font-size: var(--edtt-font-size-lg);
    color: var(--edtt-color-text-default);
    font-weight: 500;
    margin: 0;
}

.breadcrumb-section .icon {
    color: var(--edtt-color-text-default);
    font-size: var(--edtt-font-size-xl);
}

/* ===== SUBJECT TAG ===== */
/*
  Subject Tag Component
  Used for displaying subject names with icons and custom colors.
*/
.tag {
    padding: 4px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    text-transform: uppercase;
    font-size: var(--edtt-font-size-xs);
}

.tag-icon {
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-1px);
}

.tag-icon::before {
    font-size: var(--edtt-font-size-xl)!important;
}

/* ===== EXAM CARDS CONTAINER ===== */
.exam-cards {
    background: var(--edtt-color-bg-default);
    border-radius: var(--edtt-border-radius-lg);
    box-shadow: var(--edtt-shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    min-height: 200px;
}

/* ===== PAGINATION CONTAINER ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: var(--edtt-spacing-lg);
    background: var(--edtt-color-bg-default);
    border-top: 1px solid var(--edtt-color-border);
}

/* ===== LOADING STATE ===== */
.exam-cards.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== ANIMATION CLASSES ===== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-up {
    animation: slideUp 0.3s ease-out;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: var(--edtt-spacing-md);
        margin-bottom: var(--edtt-spacing-md);
    }
    
    .breadcrumb-section h4 {
        font-size: var(--edtt-font-size-lg);
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: var(--edtt-spacing-sm) var(--edtt-spacing-md);
        margin-bottom: var(--edtt-spacing-md);
    }
    
    .breadcrumb-section h4 {
        font-size: var(--edtt-font-size-lg);
    }
}

/* ===== SORT DROPDOWN ===== */
.sort-dropdown-menu {
    max-height: none;
    overflow-y: visible;
    z-index: 1030;
} 