* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}


:root {
    /* DAHA DOLĞUN VƏ PEŞƏKAR MAVİ TONLAR */
    --neon-blue: #e0eff3;
    --deep-blue: #1b346a;
    /* Tünd Gecə Mavisi Fon */
    --panel-bg: #1b346a;
    /* Tünd Panel Rəngi */
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #3a86ff 100%);
    --ai-gradient: linear-gradient(135deg, #8b5cf6 0%, #ffff 100%);
    --text-main: #ffffff;
    /* Açıq Boz/Ağ Mətn */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* GÜCLƏNDİRİLMİŞ 3D KÖLGƏLƏR */
    --shadow-3d: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --inner-glow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}



body {
    font-family: "Roboto", sans-serif;
    background: #a85a5a;
    background: linear-gradient(90deg, rgb(180, 34, 34) 0%, rgba(196, 196, 196, 1) 52%, rgba(222, 222, 222, 1) 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;

}

main.container {
    flex: 1 0 auto;
    width: 100%;
    margin-bottom: 100px;

}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.vector-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, #ffffff 40%);
}

#particles-js {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Arxa fon effekti — kliklər keçməlidir; əks halda bütün UI (#root) partikulların altında qalır */
    pointer-events: none;
}

#particles-js canvas {
    pointer-events: none;
}

/* React: nav/main/footer #root içindədir (birbaşa body övladı deyil), ona görə #root > ... */
#root>nav.main-nav {
    position: relative;
    z-index: 20;
}

#root>main.container,
#root>footer.site-footer {
    position: relative;
    z-index: 1;
}


.default-btn {
    padding: 14px 20px;

    background-color: #1e5b99;
    border: none;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
}

.default-input {
    padding: 14px;
    background: white;
    border: none;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #1e5b99;
    display: flex;
    align-items: center;
    gap: 10px;

}


.left-side {
    display: flex;
    gap: 30px;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.right-side {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
    flex: 0 1 auto;
}

.brand-text {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-title {
    color: #1b346a;
    font-size: clamp(16px, 3.5vw, 24px);
    font-weight: 700;
    line-height: 1.25;
    font-family: "Roboto", sans-serif;
}

.auth-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.header-search {
    min-width: 0;
    flex: 1 1 200px;
    max-width: 320px;
}

.default-input input {
    border: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
}


header {
    background: #ffffff;
    /* açıq şüşə effekti */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(173, 216, 230, 0.5);
    /* light blue border */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(135, 206, 250, 0.2);
    /* yumşaq mavi kölgə */
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-box {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 5px 0 #1d4ed8, 0 8px 15px rgba(0, 0, 0, 0.4);
    transform: perspective(500px) rotateY(-10deg);
    transition: var(--transition);
}

.logo-img{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo-img img:first-child {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-self: center;

}

.logo-img img:second-child {
    width: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-self: center;

}

.logo-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.logo-box:hover {
    transform: perspective(500px) rotateY(0deg) translateY(-2px);
}

.brand-text h2 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-text p {
    font-size: 10px;
    color: var(--neon-blue);
    font-weight: 700;
    letter-spacing: 1px;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #1b346a;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 8px 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    color: #ffffff;
    background: #1e5b99;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

/* NavLink <a> — brauzerin standart link stilini söndür */
.nav-links a.nav-btn {
    text-decoration: none;
    color: inherit;
}

/* Nav alt menyular — hover ilə açılır */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 300;
    min-width: 260px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #1e5b99;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

/* İç içə alt menyu (məs. Tədris ili) */
.dropdown-menu .nav-item.dropdown {
    position: relative;
}

.dropdown-menu .nav-item.dropdown>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

.nav-btn.dropdown-item {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    text-align: left;
    white-space: normal;
}

.nav-btn.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);

}

.main-layout {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

/* Dissertasiya mövzusunun izlənmə statusu: SƏNAYE TƏRƏFDAŞLARI gizlənəndə tək sütun + tam en */
.main-layout.main-layout--dissertation-fullwidth {
    grid-template-columns: 1fr;
    gap: 0;
}

main.container.main-layout-dissertation-mode {
    max-width: none;
    width: 100%;
    padding-left: clamp(10px, 2vw, 24px);
    padding-right: clamp(10px, 2vw, 24px);
}

.main-layout--dissertation-fullwidth .dissertation-tracking-panel.institute-kafedra-panel {
    max-width: none;
    width: 100%;
}

.content-area {
    min-width: 0;
}

.sidebar-partners {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-3d);
}

.sidebar-partners .sidebar-heading {
    font-family: "Roboto", sans-serif;
    font-size: clamp(11px, 2.2vw, 14px);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.35;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    word-break: break-word;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateX(5px) translateZ(20px);
    background: rgba(58, 134, 255, 0.1);
    border-color: var(--neon-blue);
    color: #ffffff;
}

.add-partner-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: transparent;
    border: 1px dashed var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 10px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(10deg);
    border-color: var(--neon-blue);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.stat-card i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.stat-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    color: #ffffff;
}

.stat-card p {
    color: #ffffff;
    font-weight: 600;
}

.institute-kafedra-panel {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(18px, 4vw, 28px);
    margin-top: 8px;
    box-shadow: var(--shadow-3d);
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.institute-kafedra-heading {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    margin: 0 0 16px;
    text-align: center;
    line-height: 1.35;
}

.research-profiles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.research-profiles-list li {
    margin: 0;
}

.research-profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e2e8f0;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.research-profile-link i {
    width: 1.25em;
    text-align: center;
    color: var(--neon-blue);
    font-size: 1.1rem;
}

.research-profile-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.35);
    color: #ffffff;
}

.research-profile-link:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

.magistr-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .magistr-feature-cards {
        grid-template-columns: 1fr;
    }
}

.magistr-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 140px;
    padding: 22px 18px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.55);
    color: #f1f5f9;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.magistr-feature-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.magistr-feature-card:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

.magistr-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.magistr-feature-card__title {
    max-width: 16ch;
}

/* Dissertasiya mövzusunun izlənmə statusu — vaxt xətti şəkli və qaydalar */
.dissertation-timeline-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 8px;
    border-radius: 14px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.35);
}

.dissertation-timeline-main-row {
    min-height: 0;
}

.dissertation-timeline-main-inner {
    min-width: 0;
}

.dissertation-timeline-stages {
    width: 100%;
    min-width: 0;
}

.dissertation-timeline-stage {
    flex: 1 1 0;
    min-width: 0;
    max-width: 18rem;
}

.dissertation-timeline-stage h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dissertation-timeline-stage .pr-8 {
    padding-right: clamp(0.5rem, 2vw, 2rem);
}

.dissertation-timeline-img {
    display: block;
    width: 100%;
    height: auto;
}

.dissertation-tracking-panel .timeline-guideline {
    max-width: 52rem;
    margin: 1.25rem auto 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.65;
    color: var(--text-main);
    font-size: 15px;
    text-align: left;
}

.dissertation-tracking-panel .timeline-guideline-section {
    margin-top: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neon-blue);
}

.dissertation-tracking-panel .timeline-guideline-section:first-of-type {
    margin-top: 0.35rem;
}

.dissertation-tracking-panel .timeline-guideline-label {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.dissertation-tracking-panel .timeline-guideline-list {
    margin: 0.25rem 0 0.5rem 1.25rem;
    padding: 0;
    list-style: disc;
}

.dissertation-tracking-panel .timeline-guideline p {
    margin-bottom: 0.4rem;
}

/* Dissertasiya izləmə — responsiv */
.dissertation-timeline-page-header .dissertation-timeline-title {
    line-height: 1.2;
}

.dissertation-timeline-page-header p {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.dissertation-timeline-stages {
    scroll-snap-type: x proximity;
}

.dissertation-timeline-stage {
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .dissertation-timeline-stage {
        max-width: 16rem;
    }
}

@media (max-width: 900px) {
    .dissertation-timeline-wrap {
        border-radius: 12px;
    }

    .dissertation-timeline-main-row {
        padding-top: 0.5rem;
    }

    .dissertation-timeline-main-inner {
        padding-left: clamp(0.75rem, 3vw, 1.5rem) !important;
        padding-right: clamp(0.75rem, 3vw, 1.5rem) !important;
    }

    .dissertation-timeline-stages {
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
        overflow-y: visible;
        gap: 0;
        scroll-snap-type: none;
        padding-bottom: 1.5rem;
        padding-top: 0.5rem;
    }

    .dissertation-timeline-stage {
        flex: none;
        width: 100%;
        max-width: none;
        scroll-snap-align: unset;
        padding-bottom: 1.25rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dissertation-timeline-stage:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Üfüqi birləşdirici xətt (növbəti mərhələyə gedən) */
    .dissertation-timeline-stage > .flex.items-center > .flex-grow.h-0\.5,
    .dissertation-timeline-stage > .flex.items-center > .flex-grow {
        display: none;
    }

    .dissertation-timeline-stage .absolute.top-6.right-2 {
        display: none;
    }

    .dissertation-timeline-stage .mt-6 {
        margin-top: 1rem;
        padding-right: 0 !important;
    }

    .dissertation-timeline-stage .rounded-xl.shadow-sm,
    .dissertation-timeline-stage .rounded-xl.shadow-xl {
        height: auto !important;
        min-height: 0;
    }

    .dissertation-timeline-stage .bg-surface-container-lowest,
    .dissertation-timeline-stage .bg-gradient-to-br {
        padding: clamp(0.75rem, 3vw, 1.5rem);
    }

    .dissertation-timeline-details {
        opacity: 1 !important;
    }

    .dissertation-tracking-panel .timeline-guideline {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
    }

    main.container.main-layout-dissertation-mode {
        padding-left: clamp(6px, 2vw, 16px);
        padding-right: clamp(6px, 2vw, 16px);
    }
}

@media (max-width: 600px) {
    #dissertation-tracking-panel.institute-kafedra-panel {
        padding: clamp(14px, 4vw, 22px);
        border-radius: 16px;
    }

    #dissertation-tracking-panel .institute-kafedra-heading {
        font-size: clamp(0.95rem, 4vw, 1.15rem);
    }

    .dissertation-timeline-stage .z-10.w-12.h-12 {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

/* Dissertasiya mövzusunun izlənmə statusu (xətti mərhələ sxemi) */
.dissertation-status-track {
    display: grid;
    grid-template-columns:
        minmax(72px, 1fr) auto minmax(72px, 1fr) auto minmax(72px, 1fr) auto minmax(72px, 1fr) auto minmax(72px, 1fr);
    grid-template-rows: auto minmax(48px, auto);
    gap: 10px 6px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 4px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dissertation-status-track .status-track-label {
    font-family: "Roboto", sans-serif;
    font-size: clamp(0.7rem, 1.9vw, 0.88rem);
    font-weight: 600;
    color: #f8fafc;
    text-align: center;
    line-height: 1.3;
    max-width: 12rem;
    justify-self: center;
}

.dissertation-status-track .status-track-box {
    width: 100%;
    max-width: 120px;
    min-width: 72px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

.dissertation-status-track .status-track-arrow {
    color: #f1f5f9;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
}

.st-l1 {
    grid-column: 1;
    grid-row: 1;
}

.st-l2 {
    grid-column: 3;
    grid-row: 1;
}

.st-l3 {
    grid-column: 5;
    grid-row: 1;
}

.st-l4 {
    grid-column: 7;
    grid-row: 1;
}

.st-l5 {
    grid-column: 9;
    grid-row: 1;
}

.st-b1 {
    grid-column: 1;
    grid-row: 2;
}

.st-a1 {
    grid-column: 2;
    grid-row: 2;
}

.st-b2 {
    grid-column: 3;
    grid-row: 2;
}

.st-a2 {
    grid-column: 4;
    grid-row: 2;
}

.st-b3 {
    grid-column: 5;
    grid-row: 2;
}

.st-a3 {
    grid-column: 6;
    grid-row: 2;
}

.st-b4 {
    grid-column: 7;
    grid-row: 2;
}

.st-a4 {
    grid-column: 8;
    grid-row: 2;
}

.st-b5 {
    grid-column: 9;
    grid-row: 2;
}

@media (max-width: 720px) {
    .dissertation-status-track {
        justify-content: start;
        min-width: min(640px, 100%);
    }
}

.institute-kafedra-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.institute-kafedra-list li.kafedra-item {
    padding: 0;
    margin-bottom: 8px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.institute-kafedra-list li.kafedra-item:last-child {
    margin-bottom: 0;
}

.kafedra-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin: 0;
    border: none;
    background: transparent;
    color: #e2e8f0;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.kafedra-item-header:hover {
    background: rgba(255, 255, 255, 0.06);
}

.kafedra-item-header:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: -2px;
}

.kafedra-item-name {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}

.kafedra-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    font-size: 1rem;
}

.kafedra-item-body {
    padding: 0 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
}

.kafedra-item-body[hidden] {
    display: none !important;
}

/* Sənaye Problemləri — readme başlıqları və mövzular */
.prob-readme-panel .senaye-problemleri-accordion {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.senaye-prob-body {
    padding-top: 10px;
}

.senaye-prob-subheading {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin: 0 0 12px;
}

.senaye-prob-topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.senaye-prob-topic-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.senaye-prob-topic-text {
    flex: 1;
    min-width: 0;
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #e2e8f0;
}

.senaye-prob-topic-actions {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.senaye-prob-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.85rem;
    pointer-events: none;
    user-select: none;
}

.senaye-prob-icon--ai {
    background: rgba(126, 34, 206, 0.25);
    color: #e9d5ff;
}

.senaye-prob-icon--edit {
    background: rgba(56, 189, 248, 0.15);
    color: var(--neon-blue);
}

.senaye-prob-icon--del {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.kafedra-topics-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
}

.kafedra-topics-table thead th {
    text-align: left;
    padding: 10px 12px;
    color: var(--neon-blue);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.6);
}

.kafedra-topics-table tbody td {
    padding: 10px 12px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.kafedra-topics-table tbody tr:last-child td {
    border-bottom: none;
}

.kafedra-table-empty {
    margin: 0;
    padding: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.view-section {
    height: 100%;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.view-section.active {
    display: block;
}

.panel {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: clamp(18px, 4vw, 35px);
    box-shadow: var(--shadow-3d);
    position: relative;
}

.panel-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.panel-title {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.magistr-rule-panel .magistr-rule-doc {
    max-width: 52rem;
    line-height: 1.65;
    color: var(--text-main);
    font-size: 15px;
}

.magistr-rule-section {
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--neon-blue);
}

.magistr-rule-doc .magistr-rule-section:first-of-type {
    margin-top: 0;
}

.magistr-rule-sub {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e8f4fc;
}

.magistr-rule-label {
    margin-top: 0.75rem;
    font-weight: 600;
}

.magistr-rule-doc p {
    margin-bottom: 0.45rem;
}

.magistr-rule-struct-list {
    margin: 0.5rem 0 0.75rem 1.25rem;
    list-style: disc;
}

.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Təlim və seminarlar — elan kartı */
.training-announcement-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(14px, 3vw, 24px);
    padding: clamp(14px, 3vw, 20px);
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(15, 23, 42, 0.45);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.training-announcement-card:hover {
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
    transform: translateY(-2px);
}

.training-announcement-card:focus-visible {
    outline: 2px solid var(--neon-blue, #38bdf8);
    outline-offset: 3px;
}

.training-announcement-card__media {
    flex: 0 0 min(38%, 280px);
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.training-announcement-card__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.training-announcement-card__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-announcement-card__title {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.35;
    color: #38bdf8;
}

.training-announcement-card__excerpt {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(226, 232, 240, 0.88);
    flex: 1 1 auto;
}

.training-announcement-card__date {
    align-self: flex-end;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.95);
}

@media (max-width: 640px) {
    .training-announcement-card {
        flex-direction: column;
    }

    .training-announcement-card__media {
        flex-basis: auto;
        max-height: 220px;
    }

    .training-announcement-card__media img {
        max-height: 220px;
        object-fit: cover;
    }
}

.form-panel-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.form-actions__primary {
    flex: 1 1 140px;
    min-width: 0;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: space-between;
}

.hero-heading {
    text-align: center;
    margin: clamp(24px, 6vw, 40px) 0;
}

.hero-title {
    font-family: "Roboto", sans-serif;
    color: #1b346a;
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 700;
}

.hero-underline {
    width: 60px;
    height: 4px;
    background: #1b346a;
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn-excel {
    background: #166534;
    box-shadow: 0 4px 0 #14532d;
}

.btn-excel:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background: #334155;
    color: #ffffff;
    box-shadow: 0 4px 0 #1e293b;
}

.btn-secondary:hover {
    filter: brightness(1.08);
}

.auth-panel {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.auth-panel-icon {
    font-size: clamp(40px, 10vw, 50px);
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.auth-panel-title {
    font-family: "Roboto", sans-serif;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: clamp(1.15rem, 3.2vw, 1.5rem);
}

.auth-panel-title--tight {
    margin-bottom: 20px;
}

.input-group--spaced {
    margin-bottom: 15px;
}

.input-group--spaced-lg {
    margin-bottom: 20px;
}

/* Şifrə sahəsi — göz ikonu ilə göstər / gizlət (Giriş, Qeydiyyat) */
.input-group .password-field {
    position: relative;
    width: 100%;
}

.input-group .password-field input {
    box-sizing: border-box;
    padding-right: 48px;
}

.password-field__toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.password-field__toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.password-field__toggle:focus-visible {
    outline: 2px solid var(--neon-blue, #38bdf8);
    outline-offset: 2px;
}

.password-field__toggle i {
    font-size: 1.05rem;
    pointer-events: none;
}

/* Qeydiyyat formasında qabarıq xəta alerti */
.reg-form-error-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.9rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fecaca;
    font-size: 0.92rem;
    line-height: 1.4;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
    animation: regErrorPulse 1.2s ease-out 1;
}

.reg-form-error-alert i {
    font-size: 1.1rem;
    margin-top: 2px;
    color: #fca5a5;
    flex-shrink: 0;
}

@keyframes regErrorPulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.0); }
    100% { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08); }
}

/* Parol sahəsi altında göstərilən tələblər siyahısı */
.reg-password-hints {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0.55rem 0.75rem 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.reg-password-hints li {
    position: relative;
    padding-left: 1.1rem 0;
    margin: 0.1rem 0;
    text-align: left;
}


.auth-panel-submit {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.auth-panel-forgot-wrap {
    margin-top: 1rem;
}

.auth-panel-forgot-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--neon-blue);
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.auth-panel-forgot-link:hover {
    color: #ffffff;
}

.auth-panel-hint {
    margin: 0 0 1.1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.85);
    font-family: "Roboto", sans-serif;
}

.form-panel-heading {
    font-family: "Roboto", sans-serif;
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -8px;
    padding: 0 8px;
}

.cyber-table {
    width: 100%;
    min-width: 520px;
    border-spacing: 0 8px;
    border-collapse: separate;
}

.cyber-table th {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 18px;
}

.cyber-table td {
    padding: 18px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--glass-border);
    border-style: solid none;
    color: #e2e8f0;
}

.cyber-table td:first-child {
    border-left-style: solid;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.cyber-table td:last-child {
    border-right-style: solid;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cyber-table tr:hover td {
    background: rgba(58, 134, 255, 0.1);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
}


input:focus {
    border-color: var(--neon-blue);
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    box-shadow: 0 4px 0 #1d4ed8;
    width: 49%;
    border: 1px solid #1d4ed8;
}

.btn-glow {
    background: var(--accent-gradient);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1d4ed8, 0 10px 20px rgba(58, 134, 255, 0.4);
}

.btn-glow:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #1d4ed8;
}

.site-footer {
    flex-shrink: 0;
    text-align: center;
    padding: 20px 16px;
    background-color: #1b346a;
    color: #ffffff;
    font-family: "Arial", sans-serif;
    width: 100%;
    margin-top: auto;
}

.site-footer p {
    margin: 0;
    font-size: clamp(12px, 2.8vw, 15px);
    line-height: 1.5;
}

.site-footer .footer-link {
    color: #4da6ff;
    text-decoration: none;
    font-weight: bold;
}

.site-footer .footer-link:hover {
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ——— Responsive ——— */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .nav-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .nav-container {
        overflow: hidden;
    }

    .nav-links {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }
}

@media (max-width: 1100px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-partners {
        position: static;
        order: 2;
        max-width: 100%;
    }

    .content-area {
        order: 1;
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 4px;
        padding: 8px 0 16px;
        width: 100%;
        flex: 1 1 100%;
        order: 3;
    }

    .main-nav.nav-open .nav-links {
        display: flex;
    }

    .nav-links>li {
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        margin: 4px 0 0;
        padding: 6px 0 8px 12px;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.22);
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: none;
    }

    .nav-item.dropdown.dropdown-open>.dropdown-menu {
        display: block !important;
    }

    .dropdown-menu .nav-item.dropdown>.dropdown-menu {
        left: auto;
        top: auto;
        margin-left: 0;
    }

    .dropdown-menu .nav-item.dropdown:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-menu .nav-item.dropdown.dropdown-open>.dropdown-menu {
        display: block !important;
    }

    .nav-btn.new_master {
        white-space: normal;
        line-height: 1.35;
    }
}

@media (max-width: 900px) {
    .header-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .left-side {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .right-side {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .auth-buttons {
        justify-content: center;
        width: 100%;
    }

    .header-search {
        max-width: none;
        width: 100%;
        flex: 1 1 auto;
    }

    .logo-img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card i {
        font-size: 28px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .panel-actions {
        width: 100%;
    }

    .panel-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

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

    .default-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cyber-table {
        min-width: 420px;
    }

    .cyber-table th,
    .cyber-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .auth-buttons {
        flex-direction: column;
    }

    .auth-buttons .default-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Sənaye problemləri — panel (TASKS 5) */
.industry-problem-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.industry-problem-tab {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
    font-size: 0.88rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.industry-problem-tab:hover {
    border-color: rgba(56, 189, 248, 0.45);
}

.industry-problem-tab.is-active {
    border-color: rgba(56, 189, 248, 0.75);
    background: rgba(14, 116, 144, 0.25);
    color: #f0f9ff;
}

.industry-problem-toast {
    margin-bottom: 1rem;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.45);
    background: rgba(22, 101, 52, 0.35);
    color: #dcfce7;
    font-size: 0.95rem;
}

.industry-problem-table-wrap {
    overflow-x: auto;
    margin-top: 0.5rem;
}

.industry-problem-table {
    min-width: 720px;
}

.industry-problem-id-cell code {
    font-size: 0.78rem;
    color: #94a3b8;
}

.industry-problem-reason-cell {
    max-width: 12rem;
}

.industry-problem-reason-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.15);
    color: #fde68a;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.industry-problem-reason-btn:hover {
    background: rgba(251, 191, 36, 0.28);
}

.industry-problem-reason-muted {
    color: #64748b;
    font-size: 0.9rem;
}

.industry-problem-deletion-hint {
    font-size: 0.85rem;
    color: #fca5a5;
    display: inline-block;
    max-width: 100%;
}

/* Komitə — sənaye mövzuları (TASKS 6) */
.committee-industry-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.committee-industry-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.committee-industry-field--grow {
    flex: 1 1 220px;
    min-width: 180px;
}

.committee-industry-field span {
    font-size: 0.82rem;
    color: #94a3b8;
}

.committee-industry-table {
    min-width: 960px;
}

.committee-industry-problem-title {
    display: block;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 4px;
}

.committee-industry-problem-desc {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

.committee-industry-actions {
    white-space: nowrap;
    vertical-align: middle;
}

.committee-industry-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.btn--sm {
    padding: 6px 10px;
    font-size: 0.82rem;
}

/* Tələbə — dissertasiya mövzusu (TASKS 7) */
.student-topic-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 1.25rem 0 0.75rem;
}

.student-topic-subsubtitle {
    font-size: 0.95rem;
    margin: 0.75rem 0 0.5rem;
    color: #94a3b8;
}

.student-topic-status-block,
.student-topic-pool-block,
.student-topic-own-block {
    margin-bottom: 1.5rem;
}

.student-topic-active-card {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(15, 23, 42, 0.55);
}

.student-topic-active-card p {
    margin: 0.35rem 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.student-topic-body-preview {
    white-space: pre-wrap;
    word-break: break-word;
}

.student-topic-notes {
    color: #fde68a;
}

.student-topic-reject {
    color: #fca5a5;
}

.student-topic-resubmit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.student-topic-resubmit-actions {
    margin-top: 0.75rem;
}

.student-topic-history {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.student-topic-history-list {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.student-topic-history-list li {
    margin-bottom: 0.35rem;
}

.student-topic-hist-status {
    font-weight: 600;
    color: #cbd5e1;
}

.student-topic-pool-table {
    min-width: 640px;
}

.student-topic-cell-desc {
    max-width: 280px;
    font-size: 0.88rem;
    color: #94a3b8;
}

/* Komitə — tələbə mövzu müraciətləri (TASKS 8) */
.committee-student-toolbar {
    margin-bottom: 1rem;
}

.committee-student-topic-table {
    min-width: 920px;
}

.committee-student-topic-detail {
    display: block;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 4px;
    line-height: 1.35;
}

.committee-student-motivation {
    max-width: 220px;
    font-size: 0.85rem;
    vertical-align: top;
}

/* Komitə rəhbəri — təyinatlar (TASKS 9) */
.chair-assign-table {
    min-width: 720px;
}

.chair-assign-cell-sm {
    font-size: 0.88rem;
    color: #cbd5e1;
    max-width: 240px;
}

.chair-assign-all summary {
    cursor: pointer;
    color: #94a3b8;
}

/* Tələbə — elmi rəhbər: əsas stillər `src/index.css` (.student-supervisor-*) */


table, tr,th,td {
    border: 1px solid #e2e8f0;
}