/* =========================================================
   ICTEX 2026 OFFICIAL RESULT PORTAL
   Main Stylesheet
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --navy: #031a3d;
    --blue: #0757a6;
    --cyan: #13b8ff;
    --gold: #f5b21b;
    --gold2: #ffcf4a;
    --ink: #07152c;
    --light: #f4f9ff;
}


/* =========================================================
   2. GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
}


/* =========================================================
   3. NAVIGATION
========================================================= */

.glass-nav {
    background: rgba(2, 20, 52, 0.86);
    backdrop-filter: blur(12px);
    transition: 0.3s;
    padding: 12px 0;
}

.glass-nav.scrolled {
    background: #031a3d;
    box-shadow: 0 8px 30px #00152f55;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-brand span {
    font-weight: 800;
}

.nav-link {
    color: #fff !important;
    margin: 0 8px;
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn-gold {
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );

    border: 0;
    color: #09204a;
    font-weight: 800;

    box-shadow: 0 8px 24px #f5b21b44;
}

.btn-gold:hover {
    color: #09204a;
    transform: translateY(-1px);
}


/* =========================================================
   5. HOME HERO SECTION
========================================================= */

.hero {
    min-height: 100vh;
    padding: 120px 0 70px;

    color: #fff;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 45%,
            #078be077 0,
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 20%,
            #f5b21b33 0,
            transparent 22%
        ),
        linear-gradient(
            135deg,
            #02112e,
            #063f83 55%,
            #021a46
        );
}


/* Hero Grid Background */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            #29b6ff12 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            #29b6ff12 1px,
            transparent 1px
        );

    background-size: 44px 44px;

    mask-image: linear-gradient(
        to bottom,
        #000,
        transparent
    );
}


/* Hero Logo */

.hero-logo {
    max-width: 430px;
    width: 85%;

    filter: drop-shadow(
        0 15px 24px #0008
    );
}


/* =========================================================
   HERO TITLE - CLEAN PREMIUM EFFECT
========================================================= */

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -3px;

    color: #ffffff;

    /* Soft depth only */
    text-shadow:
        0 5px 12px rgba(0, 12, 40, 0.35),
        0 12px 30px rgba(0, 12, 40, 0.22);

    animation: titleReveal 0.8s ease-out both;
}


/* GOLD TITLE */

.hero h1 span {
    display: inline-block;

    color: var(--gold);

    margin-top: 10px;

    text-shadow:
        0 5px 12px rgba(0, 12, 40, 0.38),
        0 12px 30px rgba(0, 12, 40, 0.22),
        0 0 20px rgba(245, 178, 27, 0.10);
}


/* DESCRIPTION */

.hero .lead {
    max-width: 680px;

    margin-top: 18px;

    color: #e8f4ff;

    text-shadow:
        0 2px 8px rgba(0, 15, 45, 0.35);
}


/* ENTRANCE ANIMATION */

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

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


/* MOBILE */

@media (max-width: 767px) {

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero h1 span {
        margin-top: 7px;
    }

    .hero .lead {
        margin-left: auto;
        margin-right: auto;
    }
}
/* Hero Heading 

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--gold);
}*/


/* Hero Description */

.hero .lead {
    max-width: 680px;
    color: #dceeff;
}


/* Eyebrow Text */

.eyebrow {
    display: inline-block;

    color: var(--gold2);

    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.82rem;
}


/* =========================================================
   HERO EVENT INFORMATION
========================================================= */

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;

    margin-top: 38px !important;
}


/* Individual event info */

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;

    /* slightly brighter glass */
    background: rgba(5, 45, 92, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 8px 20px rgba(0, 10, 35, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition: 0.25s ease;
}

.hero-meta i {
    color: var(--gold);
    font-size: 1.15rem;
}

.hero-meta span:hover {
    transform: translateY(-2px);

    background: rgba(7, 70, 135, 0.75);
    border-color: rgba(245, 178, 27, 0.45);

    box-shadow:
        0 10px 25px rgba(0, 10, 35, 0.22),
        0 0 18px rgba(245, 178, 27, 0.08);
}


/* Mobile */

@media (max-width: 767px) {

    .hero-meta {
        justify-content: center;
        gap: 10px;
    }

    .hero-meta span {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
}


/* =========================================================
   6. POSTER - FUTURISTIC ICTEX DISPLAY
========================================================= */

.poster-wrap {
    position: relative;

    max-width: 390px;
    margin: auto;

    padding: 10px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.16),
            rgba(19, 184, 255, 0.05)
        );

    border: 1px solid rgba(255, 255, 255, 0.28);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(19, 184, 255, 0.15);

    z-index: 1;

    transition: 0.4s ease;
}


/* =========================================================
   BLUE / CYAN TECHNOLOGY GLOW
========================================================= */

.poster-wrap::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(19, 184, 255, 0.22) 0%,
            rgba(7, 87, 166, 0.15) 35%,
            rgba(3, 26, 61, 0.05) 55%,
            transparent 72%
        );

    border:
        1px solid rgba(19, 184, 255, 0.18);

    box-shadow:
        0 0 45px rgba(19, 184, 255, 0.18),
        0 0 100px rgba(7, 87, 166, 0.20);

    z-index: -2;

    animation: posterPulse 4s ease-in-out infinite;
}


/* =========================================================
   GOLD TECHNOLOGY RING
========================================================= */

.poster-wrap::after {
    content: "";

    position: absolute;

    width: 445px;
    height: 445px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) rotate(0deg);

    border-radius: 50%;

    border:
        1px dashed rgba(245, 178, 27, 0.50);

    box-shadow:
        0 0 20px rgba(245, 178, 27, 0.15),
        inset 0 0 25px rgba(245, 178, 27, 0.06);

    z-index: -1;

    animation: posterRing 30s linear infinite;
}


/* =========================================================
   POSTER IMAGE
========================================================= */

.poster-wrap img {
    position: relative;

    display: block;

    width: 100%;
    height: auto;

    border-radius: 17px !important;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.38),
        0 0 25px rgba(19, 184, 255, 0.12);

    z-index: 2;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================================================
   POSTER HOVER EFFECT
========================================================= */

.poster-wrap:hover {
    transform: translateY(-5px);

    border-color:
        rgba(19, 184, 255, 0.50);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.40),
        0 0 45px rgba(19, 184, 255, 0.20);
}

.poster-wrap:hover img {
    transform: scale(1.015);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.42),
        0 0 35px rgba(19, 184, 255, 0.25);
}


/* =========================================================
   ANIMATION - BLUE GLOW
========================================================= */

@keyframes posterPulse {

    0%,
    100% {
        opacity: 0.65;

        transform:
            translate(-50%, -50%)
            scale(0.95);
    }

    50% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.05);
    }
}


/* =========================================================
   ANIMATION - GOLD RING
========================================================= */

@keyframes posterRing {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.poster-wrap .poster-corner {
    position: absolute;

    width: 45px;
    height: 45px;

    z-index: 5;

    pointer-events: none;
}


/* =========================================================
   RESPONSIVE POSTER
========================================================= */

@media (max-width: 991px) {

    .poster-wrap {
        max-width: 340px;
        margin-top: 45px;
    }

    .poster-wrap::before {
        width: 440px;
        height: 440px;
    }

    .poster-wrap::after {
        width: 385px;
        height: 385px;
    }
}


@media (max-width: 576px) {

    .poster-wrap {
        max-width: 300px;
    }

    .poster-wrap::before {
        width: 360px;
        height: 360px;
    }

    .poster-wrap::after {
        width: 330px;
        height: 330px;
    }
}

/* =========================================================
   7. GENERAL SECTIONS
========================================================= */

.section {
    padding: 90px 0;
}


/* Section Heading */

.section-title {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 48px;
}

.section-title span {
    color: #0875cc;

    font-weight: 900;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;

    margin: 8px 0 14px;
}

.section-title p {
    color: #60718a;
}


/* =========================================================
   8. INFO CARDS & THEME CARDS
========================================================= */

.info-card,
.theme-card {
    height: 100%;

    padding: 34px;

    border-radius: 22px;
    border: 1px solid #dce9f7;

    background: #fff;

    box-shadow: 0 15px 45px #07346b12;

    transition: 0.25s;
}


/* Card Hover */

.info-card:hover,
.theme-card:hover {
    transform: translateY(-6px);
}


/* Info Card Icon */

.info-card i {
    font-size: 2.5rem;
    color: #087bd0;
}


/* Card Headings */

.info-card h4,
.theme-card h3 {
    font-weight: 800;

    margin-top: 18px;
}


/* =========================================================
   9. DARK COMPETITION SECTION
========================================================= */

.section-dark {
    color: #fff;

    background: linear-gradient(
        145deg,
        #031a3d,
        #064c92
    );
}

.section-dark .section-title span {
    color: var(--gold);
}


/* Competition Theme Cards */

.theme-card {
    background: #ffffff0d;
    border-color: #ffffff22;
}

.theme-card p {
    color: #c8ddf4;
}

.theme-card .icon {
    width: 64px;
    height: 64px;

    border-radius: 18px;

    display: grid;
    place-items: center;

    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold2)
    );

    color: #062451;

    font-size: 1.8rem;
}


/* =========================================================
   10. AWARD STRIP
========================================================= */

.award-strip {
    display: flex;

    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;

    padding: 25px;

    border-radius: 18px;
    border: 1px solid #ffffff22;

    background: #001a3e88;
}

.award-strip i {
    color: var(--gold);
    font-size: 1.4rem;
}


/* =========================================================
   11. RESULT CTA
========================================================= */

.result-cta {
    padding: 90px 0;

    background: radial-gradient(
        circle,
        #e8f7ff,
        #fff
    );
}


/* =========================================================
   12. FOOTER
========================================================= */

.footer {
    background: #020f27;
    color: #fff;
}

.footer-logo {
    height: 60px;
    max-width: 160px;

    object-fit: contain;
}


/* =========================================================
   13. INNER PAGE HERO
========================================================= */

.page-hero {
    padding: 160px 0 105px;

    color: #fff;

    background:
        radial-gradient(
            circle at 50% 0,
            #087ad877,
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #02112e,
            #064681
        );
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
}

.page-hero p {
    font-size: 1.2rem;
    color: #d7ebff;
}


/* =========================================================
   14. RESULT SEARCH PANEL
========================================================= */

.search-panel {
    position: relative;

    margin-top: -45px;
    margin-bottom: 45px;

    padding: 28px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 18px 55px #032a601f;
}


/* Forms */

.form-control,
.form-select,
.input-group-text {
    min-height: 48px;

    border-color: #d6e3f1;
}


/* Result Counter */

.result-count {
    background: #eaf5ff;
    color: #0868b5;

    padding: 7px 12px;

    border-radius: 99px;

    font-weight: 700;
}


/* =========================================================
   15. RESULT TABLE
========================================================= */

.result-table {
    border-radius: 18px;
    border: 1px solid #e2ebf5;

    overflow: hidden;
}

.result-table table {
    margin: 0;
}

.result-table thead th {
    background: #062b59;
    color: #fff;

    padding: 18px;

    border: 0;
}

.result-table td {
    padding: 18px;
}

.result-table td small {
    display: block;

    color: #718198;

    margin-top: 4px;
}


/* =========================================================
   16. AWARD BADGES
========================================================= */

.award {
    display: inline-block;

    padding: 7px 13px;

    border-radius: 99px;

    font-weight: 900;
}


/* Gold */

.award-gold {
    background: #fff1b9;
    color: #916300;
}


/* Silver */

.award-silver {
    background: #edf1f5;
    color: #52606e;
}


/* Bronze */

.award-bronze {
    background: #f5dfd0;
    color: #8b4a20;
}


/* Participation */

.award-participation {
    background: #dff4ff;
    color: #0870a5;
}

/* =========================================================
   RESULT AWARD BADGES
========================================================= */

.result-table .award {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-width: 105px;

    padding: 9px 15px;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    border: 1px solid transparent;
}


/* GOLD */

.result-table .award-gold {
    color: #8a6000;

    background:
        linear-gradient(
            135deg,
            #fff5c5,
            #ffe58b
        );

    border-color: #f5d56b;

    box-shadow:
        0 4px 12px rgba(245, 178, 27, 0.12);
}


/* SILVER */

.result-table .award-silver {
    color: #536271;

    background:
        linear-gradient(
            135deg,
            #f4f7f9,
            #e3e9ee
        );

    border-color: #d3dce4;
}


/* BRONZE */

.result-table .award-bronze {
    color: #914a1e;

    background:
        linear-gradient(
            135deg,
            #fae8da,
            #efc8ac
        );

    border-color: #e6b794;
}


/* PARTICIPATION */

.result-table .award-participation {
    color: #0870a5;

    background: #e4f5ff;

    border-color: #bce6fb;
}


/* Badge Icon */

.result-table .award i {
    font-size: 1rem;
}

/* =========================================================
   RESULT SUMMARY RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .result-summary {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 576px) {

    .result-summary {
        grid-template-columns: 1fr;

        margin-top: -35px;
    }

    .summary-card {
        min-height: 105px;

        padding: 18px;
    }

    .summary-info strong {
        margin: 2px 0;
        color: #07152c;
        font-size: 2.25rem;
        font-weight: 900;
        line-height: 1;
    }
}


/* =========================================================
   17. RESULT DETAILS PAGE
========================================================= */

.result-detail {
    max-width: 850px;

    margin-top: -45px;

    background: #fff;

    border-radius: 25px;

    padding: 45px;

    box-shadow: 0 20px 60px #032a6020;

    text-align: center;
}


/* Award Medal */

.award-medal {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 99px;

    font-weight: 900;
    font-size: 1.1rem;
}


/* Project ID */

.project-id {
    margin-top: 25px;

    color: #0873c8;

    font-weight: 800;
    letter-spacing: 2px;
}


/* Project Title */

.result-detail h2 {
    font-size: 2.6rem;
    font-weight: 900;
}


/* =========================================================
   18. RESULT DETAIL GRID
========================================================= */

.detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    text-align: left;

    margin: 35px 0;
}

.detail-grid div,
.members {
    padding: 20px;

    border-radius: 15px;

    background: #f4f9ff;
}

.detail-grid span {
    display: block;

    color: #73839a;

    font-size: 0.85rem;

    margin-bottom: 5px;
}

.detail-grid strong {
    font-size: 1.05rem;
}


/* Members */

.members {
    text-align: left;
}


/* =========================================================
   19. ADMIN LOGIN
========================================================= */

.admin-body {
    min-height: 100vh;

    display: grid;
    place-items: center;

    position: relative;

    background-image:
        linear-gradient(
            rgba(1, 18, 48, 0.18),
            rgba(1, 18, 48, 0.28)
        ),
        url("../img/img-background.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.admin-login {
    width: min(430px, 92vw);

    padding: 38px 38px 32px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.65);

    box-shadow:
        0 25px 70px rgba(0, 12, 40, 0.35),
        0 0 0 1px rgba(19, 184, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    position: relative;
    z-index: 2;
}

.admin-login img {
    display: block;

    max-width: 240px;
    height: 100px;

    object-fit: contain;

    margin: 0 auto 15px;
}

.admin-login h3 {
    text-align: center;

    font-weight: 900;

    margin-bottom: 25px;
}

.admin-login small {
    display: block;

    text-align: center;

    margin-top: 14px;

    color: #78889b;
}


/* =========================================================
   20. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    /* Hero */

    .hero {
        text-align: center;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-meta {
        justify-content: center;
    }


    /* Result Details */

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .result-detail {
        padding: 28px 20px;
    }


    /* Navigation */

    .navbar-brand span {
        display: none;
    }
}


/* =========================================================
   RESULT SUMMARY
========================================================= */

.result-summary {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: -55px;
    margin-bottom: 28px;
}


/* =========================================================
   SUMMARY CARD
========================================================= */

.summary-card {
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #dce9f7;
    border-radius: 18px;

    text-decoration: none;

    box-shadow:
        0 14px 35px rgba(3, 42, 96, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.summary-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(3, 42, 96, 0.16);
}


/* =========================================================
   ICON
========================================================= */

.summary-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-size: 1.55rem;
}


/* =========================================================
   TEXT
========================================================= */

.summary-info {
    display: flex;
    flex-direction: column;
}


.summary-info span {
    color: #60718a;

    font-size: 0.82rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}


.summary-info strong {
    margin: 1px 0;

    color: #07152c;

    font-size: 2rem;
    font-weight: 900;

    line-height: 1.1;
}


.summary-info small {
    color: #8290a3;

    font-size: 0.82rem;
}


/* =========================================================
   TOTAL
========================================================= */

.summary-total .summary-icon {
    color: #0875cc;

    background: #eaf5ff;
}

.summary-total:hover {
    border-color: #8bcfff;
}


/* =========================================================
   GOLD
========================================================= */

.summary-gold .summary-icon {
    color: #a87300;

    background:
        linear-gradient(
            135deg,
            #fff6cc,
            #ffe795
        );
}

.summary-gold:hover {
    border-color: #f5b21b;

    box-shadow:
        0 20px 45px rgba(245, 178, 27, 0.16);
}


/* =========================================================
   SILVER
========================================================= */

.summary-silver .summary-icon {
    color: #647383;

    background:
        linear-gradient(
            135deg,
            #f3f6f8,
            #dde4ea
        );
}

.summary-silver:hover {
    border-color: #aab8c5;
}


/* =========================================================
   BRONZE
========================================================= */

.summary-bronze .summary-icon {
    color: #a95c28;

    background:
        linear-gradient(
            135deg,
            #f9e6d8,
            #efc5a8
        );
}

.summary-bronze:hover {
    border-color: #cf8958;
}


/* =========================================================
   SEARCH PANEL AFTER SUMMARY
========================================================= */

.result-summary + .search-panel {
    margin-top: 0;
}

/* =========================================================
   RESULT DETAILS MODAL
========================================================= */

.result-modal {
    position: relative;

    border: 0;
    border-radius: 26px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(0, 15, 45, 0.35);
}


/* GOLD TOP LINE */

.result-modal::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #0757a6,
        #13b8ff,
        #f5b21b
    );
}


/* MODAL BODY */

.result-modal .modal-body {
    padding: 45px 45px 40px;
}


/* CLOSE BUTTON */

.result-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 10;
}


/* PROJECT ID */

.result-modal .project-id {
    margin-top: 22px;
    margin-bottom: 8px;

    color: #0873c8;

    font-size: 0.85rem;
    font-weight: 900;

    letter-spacing: 2px;
}


/* PROJECT TITLE */

.modal-project-title {
    max-width: 650px;

    margin:
        0 auto
        28px;

    color: #07152c;

    font-size: clamp(
        1.8rem,
        4vw,
        2.5rem
    );

    font-weight: 900;

    line-height: 1.15;
}


/* INFORMATION BOXES */

.result-modal .detail-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin: 30px 0 16px;
}


.result-modal .detail-grid div {
    padding: 18px;

    background: #f4f9ff;

    border: 1px solid #e3eef9;
    border-radius: 14px;
}


.result-modal .detail-grid span {
    display: block;

    margin-bottom: 5px;

    color: #73839a;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.result-modal .detail-grid strong {
    color: #07152c;

    font-size: 1rem;
}


/* TEAM MEMBERS */

.result-modal .members {
    padding: 20px;

    background: #f4f9ff;

    border: 1px solid #e3eef9;
    border-radius: 14px;
}


.result-modal .members h5 {
    margin-bottom: 12px;

    color: #07152c;

    font-weight: 800;
}


.result-modal .members h5 i {
    color: #0875cc;
}


.result-modal .members p {
    margin: 0;

    color: #50627a;

    line-height: 1.7;

    white-space: pre-line;
}


/* =========================================================
   MODAL AWARD
========================================================= */

.result-modal .award-medal {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 20px;

    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 900;

    letter-spacing: 0.5px;
}


/* GOLD */

.result-modal .award-gold {
    color: #8a6000;

    background:
        linear-gradient(
            135deg,
            #fff5c5,
            #ffe58b
        );

    border: 1px solid #f5d56b;
}


/* SILVER */

.result-modal .award-silver {
    color: #536271;

    background:
        linear-gradient(
            135deg,
            #f4f7f9,
            #e3e9ee
        );

    border: 1px solid #d3dce4;
}


/* BRONZE */

.result-modal .award-bronze {
    color: #914a1e;

    background:
        linear-gradient(
            135deg,
            #fae8da,
            #efc8ac
        );

    border: 1px solid #e6b794;
}


/* PARTICIPATION */

.result-modal .award-participation {
    color: #0870a5;

    background: #e4f5ff;

    border: 1px solid #bce6fb;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .result-modal .modal-body {
        padding:
            40px 20px
            25px;
    }

    .result-modal .detail-grid {
        grid-template-columns: 1fr;
    }

    .modal-project-title {
        font-size: 1.8rem;
    }

}

/* =========================================================
   MODAL AWARD IMAGE
========================================================= */

.modal-award-image-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    margin:
        0 auto
        12px;
}


.modal-award-image {
    display: block;

    width: min(330px, 75%);

    height: 105px;

    object-fit: contain;

    margin: 0 auto;

    filter:
        drop-shadow(
            0 8px 12px rgba(0, 15, 45, 0.15)
        );

    animation:
        awardReveal
        0.45s
        ease-out;
}


/* Award entrance */

@keyframes awardReveal {

    from {
        opacity: 0;

        transform:
            translateY(-8px)
            scale(0.94);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* Mobile */

@media (max-width: 576px) {

    .modal-award-image {
        width: min(270px, 85%);
        height: 90px;
    }

}

/* =========================================================
   FIX NAVBAR SHIFT WHEN BOOTSTRAP MODAL OPENS
========================================================= */

html {
    overflow-y: scroll;
}

body.modal-open {
    padding-right: 0 !important;
}

.navbar,
.glass-nav {
    padding-right: 0 !important;
}

/* =========================================================
   RESULT TABLE - AWARD IMAGE
========================================================= */

.result-table .award-cell {
    vertical-align: middle;
}

.result-table .table-award-image {
    display: block;

    width: 150px;
    height: 55px;

    object-fit: contain;
    object-position: left center;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;

    filter:
        drop-shadow(
            0 4px 6px rgba(0, 20, 50, 0.10)
        );
}


/* subtle hover */

.result-table tr:hover .table-award-image {
    transform: scale(1.04);

    filter:
        drop-shadow(
            0 6px 9px rgba(0, 20, 50, 0.15)
        );
}


/* Tablet */

@media (max-width: 991px) {

    .result-table .table-award-image {
        width: 125px;
        height: 48px;
    }

}


/* Mobile */

@media (max-width: 576px) {

    .result-table .table-award-image {
        width: 105px;
        height: 42px;
    }

}

/* =========================================================
   ICTEX DASHBOARD
========================================================= */

.dashboard-body {
    margin: 0;
    min-height: 100vh;
    background: #f4f8fd;
    color: #07152c;
}


/* LAYOUT */

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}


/* =========================================================
   SIDEBAR
========================================================= */

.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;

    width: 265px;
    height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 28px 18px;

    background:
        linear-gradient(
            180deg,
            #031a3d 0%,
            #052d62 100%
        );

    color: #ffffff;

    z-index: 100;
}


.dashboard-brand {
    padding: 0 12px 28px;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}


.dashboard-brand img {
    display: block;

    width: 170px;
    height: 65px;

    object-fit: contain;
    object-position: left center;

    margin-bottom: 8px;
}


.dashboard-brand span {
    color: #f5b21b;

    font-size: .72rem;
    font-weight: 900;

    letter-spacing: 2px;
}


/* MENU */

.dashboard-menu {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-top: 30px;
}


.dashboard-menu a,
.dashboard-sidebar-bottom a {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 13px 15px;

    border-radius: 12px;

    color: #dcecff;

    text-decoration: none;

    font-size: .95rem;
    font-weight: 700;

    transition: .25s;
}


.dashboard-menu a i,
.dashboard-sidebar-bottom a i {
    width: 22px;

    font-size: 1.15rem;
}


.dashboard-menu a:hover {
    color: #ffffff;

    background:
        rgba(255,255,255,.09);
}


.dashboard-menu a.active {
    color: #062451;

    background:
        linear-gradient(
            135deg,
            #f5b21b,
            #ffcf4a
        );

    box-shadow:
        0 8px 24px
        rgba(245,178,27,.20);
}


.dashboard-sidebar-bottom {
    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.12);
}


.dashboard-sidebar-bottom a:hover {
    color: #ffffff;

    background:
        rgba(255,255,255,.09);
}


/* =========================================================
   MAIN
========================================================= */

.dashboard-main {
    width: calc(100% - 265px);

    margin-left: 265px;

    padding-bottom: 60px;
}


/* TOPBAR */

.dashboard-topbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 38px;

    background: #ffffff;

    border-bottom: 1px solid #e3edf7;

    box-shadow:
        0 5px 20px
        rgba(3,42,96,.04);
}


.dashboard-topbar h4 {
    margin: 1px 0 0;

    font-weight: 900;
}


.dashboard-topbar > div:first-child small {
    color: #0875cc;

    font-size: .7rem;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.dashboard-user {
    display: flex;
    align-items: center;

    gap: 12px;
}


.dashboard-user strong,
.dashboard-user small {
    display: block;
}


.dashboard-user small {
    color: #74869d;
}


.dashboard-avatar {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #062451;

    background:
        linear-gradient(
            135deg,
            #f5b21b,
            #ffcf4a
        );

    font-size: 1.25rem;
}


/* =========================================================
   WELCOME
========================================================= */

.dashboard-welcome {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 32px 38px;

    padding: 35px 40px;

    overflow: hidden;

    border-radius: 24px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(19,184,255,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #031a3d,
            #0757a6
        );

    box-shadow:
        0 18px 45px
        rgba(3,42,96,.14);
}


.dashboard-welcome::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    top: -100px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50%;
}


.dashboard-eyebrow {
    color: #ffcf4a;

    font-size: .72rem;
    font-weight: 900;

    letter-spacing: 2px;
}


.dashboard-welcome h1 {
    margin: 7px 0 8px;

    font-size: 2.2rem;
    font-weight: 900;
}


.dashboard-welcome p {
    max-width: 600px;

    margin: 0;

    color: #d9ecff;
}


.dashboard-welcome > i {
    position: relative;
    z-index: 2;

    margin-right: 35px;

    color: #ffcf4a;

    font-size: 5rem;

    opacity: .9;
}


/* =========================================================
   STATISTICS
========================================================= */

.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;

    margin: 0 38px 35px;
}

.jury-stats {
    grid-template-columns:
        repeat(3, 1fr);
}


.dashboard-stat-card {
    display: flex;
    align-items: center;

    gap: 17px;

    min-height: 125px;

    padding: 22px;

    border: 1px solid #dce8f4;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(3,42,96,.06);
}


.dashboard-stat-card > div:last-child {
    display: flex;
    flex-direction: column;
}


.dashboard-stat-card span {
    color: #657891;

    font-size: .72rem;
    font-weight: 900;

    letter-spacing: .8px;
}


.dashboard-stat-card strong {
    margin: 2px 0;

    color: #07152c;

    font-size: 2rem;
    font-weight: 900;

    line-height: 1;
}


.dashboard-stat-card small {
    color: #8291a4;
}


.stat-icon {
    flex: 0 0 auto;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    font-size: 1.4rem;
}


.stat-icon.blue {
    color: #0875cc;
    background: #e9f5ff;
}


.stat-icon.cyan {
    color: #0094ce;
    background: #e5f9ff;
}


.stat-icon.gold {
    color: #a96e00;
    background: #fff0b5;
}


.stat-icon.silver {
    color: #667684;
    background: #edf1f5;
}

.stat-icon.bronze {
    color: #a85d22;
    background: #f8e7d8;
}


.stat-icon.green {
    color: #16865b;
    background: #e5f8ef;
}


/* =========================================================
   DASHBOARD SECTION
========================================================= */

.dashboard-section {
    margin: 0 38px;
}


.dashboard-section-heading {
    margin-bottom: 18px;
}


.dashboard-section-heading span {
    color: #0875cc;

    font-size: .72rem;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.dashboard-section-heading h3 {
    margin-top: 3px;

    font-weight: 900;
}


/* QUICK ACTION */

.dashboard-actions {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.dashboard-action-card {
    display: flex;
    align-items: center;

    gap: 17px;

    min-height: 130px;

    padding: 25px;

    border: 1px solid #dce8f4;
    border-radius: 18px;

    background: #ffffff;

    color: #07152c;

    text-decoration: none;

    box-shadow:
        0 10px 30px
        rgba(3,42,96,.05);

    transition: .25s;
}


.dashboard-action-card:hover {
    color: #07152c;

    transform: translateY(-4px);

    border-color: #9dd6fa;

    box-shadow:
        0 18px 38px
        rgba(3,42,96,.10);
}


.dashboard-action-card > i:first-child {
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: #0875cc;

    background: #eaf6ff;

    font-size: 1.35rem;
}


.dashboard-action-card > i:last-child {
    margin-left: auto;

    color: #0875cc;
}


.dashboard-action-card h5 {
    margin-bottom: 5px;

    font-weight: 900;
}


.dashboard-action-card p {
    margin: 0;

    color: #718198;

    font-size: .88rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .dashboard-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .dashboard-actions {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .dashboard-sidebar {
        width: 75px;

        padding:
            20px 10px;
    }

    .dashboard-brand img {
        width: 52px;
    }

    .dashboard-brand span,
    .dashboard-menu a:not(.active),
    .dashboard-menu a span {
        font-size: 0;
    }

    .dashboard-main {
        width:
            calc(100% - 75px);

        margin-left: 75px;
    }

    .dashboard-topbar,
    .dashboard-welcome,
    .dashboard-section {
        margin-left: 18px;
        margin-right: 18px;
    }

    .dashboard-topbar {
        padding:
            14px 18px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;

        margin-left: 18px;
        margin-right: 18px;
    }

    .dashboard-actions {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome > i {
        display: none;
    }

}

/* =========================================================
   ICTEX 2026 SWEETALERT
========================================================= */

.ictex-swal-popup {
    border-radius: 22px !important;

    padding: 30px !important;

    border: 1px solid #dce8f4 !important;

    box-shadow:
        0 25px 70px
        rgba(3, 42, 96, .18) !important;
}


.ictex-swal-popup .swal2-title {
    color: #07152c !important;

    font-size: 1.45rem !important;

    font-weight: 900 !important;
}


.ictex-swal-popup .swal2-html-container {
    color: #657891 !important;

    font-size: .92rem !important;
}


/* GOLD / NAVY CONFIRM BUTTON */

.ictex-swal-confirm {
    min-width: 110px;

    padding: 10px 22px;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #d8a928,
        #f0c94f
    );

    color: #07152c;

    font-size: .88rem;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.ictex-swal-confirm:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(216, 169, 40, .28);
}


/* CANCEL BUTTON */

.ictex-swal-cancel {
    min-width: 100px;

    margin-right: 10px;

    padding: 10px 22px;

    border: 1px solid #dce8f4;
    border-radius: 10px;

    background: #ffffff;

    color: #657891;

    font-size: .88rem;
    font-weight: 700;
}


.ictex-swal-cancel:hover {
    background: #f3f7fb;

    color: #07152c;
}

/* =========================================================
   ICTEX 2026 - USER MANAGEMENT
========================================================= */

/* PAGE HEADER */
.admin-page-header {
    margin: 32px 38px 25px;
}

.admin-page-header h1 {
    margin: 5px 0 6px;
    color: #07152c;
    font-size: 2rem;
    font-weight: 900;
}

.admin-page-header p {
    margin: 0;
    color: #718198;
}

.admin-page-header .dashboard-eyebrow {
    color: #e8aa10;
}

/* SUMMARY */
.user-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 38px 25px;
}

.user-summary-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 108px;
    padding: 20px;
    border: 1px solid #dce8f4;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 7px 22px rgba(3, 42, 96, .045);
}

.user-summary-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.user-summary-card span {
    color: #657891;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .7px;
}

.user-summary-card strong {
    margin: 3px 0;
    color: #07152c;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.user-summary-card small {
    color: #8291a4;
    font-size: .76rem;
}

.user-summary-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.2rem;
}

.user-summary-icon.blue {
    color: #0875cc;
    background: #e9f5ff;
}

.user-summary-icon.gold {
    color: #a96e00;
    background: #fff0b5;
}

.user-summary-icon.cyan {
    color: #0094ce;
    background: #e5f9ff;
}

.user-summary-icon.green {
    color: #16865b;
    background: #e5f8ef;
}

/* MAIN USER CARD */
.admin-content-card {
    margin: 0 38px 35px;
    padding-bottom: 22px;
    border: 1px solid #dce8f4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(3, 42, 96, .05);
}

/* CARD HEADER */
.admin-content-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 26px 20px;
}

.admin-content-card-header > div:first-child > span {
    color: #0875cc;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.admin-content-card-header h3 {
    margin: 4px 0 0;
    color: #07152c;
    font-size: 1.25rem;
    font-weight: 900;
}

/* HEADER ACTIONS */
.admin-content-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.admin-table-search {
    position: relative;
    width: 270px;
}

.admin-table-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    transform: translateY(-50%);
    color: #8291a4;
}

.admin-table-search input {
    width: 100%;
    height: 44px;
    padding: 8px 14px 8px 41px;
    border: 1px solid #d7e4f1;
    border-radius: 11px;
    outline: none;
    color: #07152c;
    background: #f8fbfe;
    font-size: .85rem;
    transition: .2s ease;
}

.admin-table-search input:focus {
    border-color: #7ac6f4;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .07);
}

.admin-add-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 11px;
    white-space: nowrap;
}

/* TABLE CONTAINER */
.admin-table-wrapper {
    /*margin: 0 24px;
    overflow: hidden;
    border: 1px solid #e0e9f3;
    border-radius: 14px;*/

    position: relative;
    margin: 0 24px;
    overflow: hidden;
    border: 1px solid #dce8f4;
    border-radius: 14px;
}

/* TABLE */
.admin-table {
    width: 100%;
    margin: 0;
}

.admin-table thead th {
    padding: 14px 16px;
    border-right: 1px solid #dce8f4;
    border-bottom: 1px solid #dce8f4;
    color: #ffffff; /*#07152c*/
    background: #800000;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .65px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-table .col-no {
    width: 55px;
}

.admin-table .table-no {
    width: 55px;
    color: #657891;
    font-weight: 800;
    text-align: center;
}

.admin-table tbody td {
    padding: 16px;
    border-right: 1px solid #e4ecf4;
    border-bottom: 1px solid #e4ecf4;
    color: #40536b;
    background: #ffffff;
    font-size: .9rem;
    vertical-align: middle;
}

.admin-table thead th:last-child,
.admin-table tbody td:last-child {
    border-right: 0;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table th,
.admin-table td {
    text-align: center;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
    text-align: left;
}

.admin-table tbody td {
    padding: 16px;
    border-bottom: 1px solid #edf2f7;
    color: #40536b;
    background: #ffffff;
    font-size: .9rem;
    vertical-align: middle;
}


.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table tbody tr:hover td {
    background: #fafdff;
}

/* USER */
.admin-user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 235px;
}

.admin-user-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf5ff;
    font-size: 1rem;
}

.admin-user-cell strong {
    display: block;
    color: #07152c;
    font-size: .9rem;
    font-weight: 900;
}

.admin-user-cell small {
    display: block;
    max-width: 220px;
    margin-top: 3px;
    overflow: hidden;
    color: #8291a4;
    font-size: .78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-name-column .admin-user-cell small {
    display: block;
    max-width: none;
    margin-top: 4px;
    overflow: visible;
    color: #71839a;
    font-size: .78rem;
    line-height: 1.4;
    text-overflow: unset;
    white-space: normal;
}

.project-name-column {
    min-width: 360px;
    text-align: left !important;
}

.admin-ic-number {
    color: #203b5c;
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ROLE */
.user-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}

.user-role-badge.admin {
    color: #8a6000;
    background: #fff2bc;
}

.user-role-badge.jury {
    color: #0870a5;
    background: #e2f5ff;
}

/* STATUS */
.user-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
}

.user-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.user-status.active {
    color: #16865b;
}

.user-status.active span {
    background: #24ad77;
    box-shadow: 0 0 0 4px rgba(36, 173, 119, .09);
}

.user-status.inactive {
    color: #8996a6;
}

.user-status.inactive span {
    background: #9aa6b4;
    box-shadow: 0 0 0 4px rgba(154, 166, 180, .10);
}

/* ACTION */
.admin-action-button {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid #d8e5f1;
    border-radius: 9px;
    color: #60718a;
    background: #ffffff;
}

.admin-action-button:hover {
    color: #0875cc;
    border-color: #a8d5f2;
    background: #f1f8fe;
}

.admin-action-menu {
    min-width: 190px;
    padding: 8px;
    border: 1px solid #dce8f4;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(3, 42, 96, .12);
}

.admin-action-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
}

.admin-action-menu .dropdown-item i {
    width: 18px;
}

/* MODAL */
.admin-form-modal {
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 15, 45, .25);
}

.admin-form-modal .modal-header {
    padding: 22px 25px;
    border-bottom: 1px solid #e7eef6;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.admin-form-modal .modal-header span {
    color: #0875cc;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.admin-form-modal .modal-header h4 {
    margin: 3px 0 0;
    color: #07152c;
    font-weight: 900;
}

.admin-form-modal .modal-body {
    padding: 27px 28px;
}

.admin-form-modal .modal-footer {
    padding: 18px 25px;
    border-top: 1px solid #e7eef6;
    background: #fafcff;
}

.admin-form-modal .form-label {
    margin-bottom: 7px;
    color: #40536b;
    font-size: .82rem;
    font-weight: 800;
}

.admin-form-modal .form-control,
.admin-form-modal .form-select {
    min-height: 46px;
    border-color: #d7e4f1;
    border-radius: 10px;
}

.admin-form-modal .form-control:focus,
.admin-form-modal .form-select:focus {
    border-color: #79c5f3;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .08);
}

.admin-form-modal .form-text {
    color: #8a98aa;
    font-size: .72rem;
}

/* EMPTY STATE */
.admin-empty-state {
    padding: 25px;
    color: #8291a4;
}

.admin-empty-state > i {
    display: block;
    margin-bottom: 12px;
    color: #a9c8df;
    font-size: 2.5rem;
}

.admin-empty-state h5 {
    color: #40536b;
    font-weight: 800;
}

.admin-empty-state p {
    margin: 0;
    font-size: .85rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .user-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-content-card-header {
        align-items: flex-start;
    }

    .admin-content-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .admin-page-header {
        margin: 25px 18px 20px;
    }

    .admin-page-header h1 {
        font-size: 1.65rem;
    }

    .user-summary-grid {
        grid-template-columns: 1fr;
        margin-left: 18px;
        margin-right: 18px;
    }

    .admin-content-card {
        margin-left: 18px;
        margin-right: 18px;
    }

    .admin-content-card-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-content-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-table-search {
        width: 100%;
    }

    .admin-add-button {
        width: 100%;
    }

    .admin-table-wrapper {
        margin: 0 15px;
    }

    .admin-form-modal .modal-body {
        padding: 22px 20px;
    }
}

.admin-row-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
}


/* BUTTON TABLE USERS - ADMIN */

.btn-action-edit,
.btn-action-activate,
.btn-action-deactivate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    transition: .2s ease;
}

.btn-action-edit {
    border: 1px solid #b8dcf5;
    color: #0875cc;
    background: #edf7ff;
}

.btn-action-edit:hover {
    border-color: #0875cc;
    background: #dff1ff;
}

.btn-action-deactivate {
    border: 1px solid #f2c7cc;
    color: #c53d4b;
    background: #fff4f5;
}

.btn-action-deactivate:hover {
    border-color: #dc3545;
    background: #ffe7e9;
}

.btn-action-activate {
    border: 1px solid #bce5d1;
    color: #16865b;
    background: #edfaf4;
}

.btn-action-activate:hover {
    border-color: #24ad77;
    background: #ddf5e9;
}


/* PAGE PAGINATION - TABLE */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 18px 4px;
}

.admin-pagination-info {
    color: #74859a;
    font-size: .82rem;
}

.admin-pagination-info strong {
    color: #203b5c;
    font-weight: 800;
}

.admin-pagination .pagination {
    display: flex;
    gap: 5px;
}

.admin-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 5px 10px;
    border: 1px solid #dce8f4;
    border-radius: 8px;
    color: #40536b;
    background: #ffffff;
    font-size: .78rem;
    font-weight: 800;
    box-shadow: none;
}

.admin-pagination .page-item .page-link:hover {
    border-color: #9ccdf0;
    color: #0875cc;
    background: #f0f8ff;
}

.admin-pagination .page-item.active .page-link {
    border-color: #0875cc;
    color: #ffffff;
    background: #0875cc;
}

.admin-pagination .page-item.disabled .page-link {
    color: #b3becb;
    background: #f7f9fb;
    pointer-events: none;
}

@media (max-width: 767px) {
    .admin-pagination {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* UNTUK PROJECTS */
.project-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 38px 25px;
}

.project-summary-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.25rem;
}

.project-summary-icon.multimedia {
    color: #8b5cf6;
    background: #f1ebff;
}

.project-summary-icon.iot {
    color: #0875cc;
    background: #e8f5ff;
}

.project-summary-icon.web {
    color: #d79000;
    background: #fff5d8;
}

.project-summary-icon.sustainability {
    color: #16865b;
    background: #e8f8f0;
}

.project-name-column {
    min-width: 270px;
    text-align: left !important;
}

.project-code {
    color: #163b68;
    font-size: .84rem;
    font-weight: 800;
    white-space: nowrap;
}

.project-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 800;
    white-space: nowrap;
}

.project-category-badge.multimedia {
    color: #7650c7;
    background: #f1ebff;
}

.project-category-badge.iot {
    color: #0875cc;
    background: #e5f5ff;
}

.project-category-badge.web-system {
    color: #b87800;
    background: #fff3d1;
}

.project-category-badge.sustainability {
    color: #16865b;
    background: #e7f8ef;
}

.project-form-section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e7eef6;
}

.project-form-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.project-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.project-form-section-title > i {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf6ff;
    font-size: 1rem;
}

.project-form-section-title div {
    display: flex;
    flex-direction: column;
}

.project-form-section-title span {
    color: #0a2d58;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .6px;
}

.project-form-section-title small {
    margin-top: 2px;
    color: #8291a4;
    font-size: .74rem;
}

@media (max-width: 1200px) {
    .project-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .project-summary-grid {
        grid-template-columns: 1fr;
        margin: 24px 20px;
    }
}

#addProjectModal .modal-dialog,
#editProjectModal .modal-dialog {
    max-width: 1100px;
}

#addProjectModal .modal-content,
#editProjectModal .modal-content {
    max-height: 90vh;
    overflow: hidden;
}

#addProjectModal .admin-form-modal form,
#editProjectModal .admin-form-modal form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

#addProjectModal .modal-header,
#editProjectModal .modal-header {
    flex-shrink: 0;
}

#addProjectModal .modal-body,
#editProjectModal .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 24px 28px;
}

#addProjectModal .modal-footer,
#editProjectModal .modal-footer {
    flex-shrink: 0;
    background: #ffffff;
    border-top: 1px solid #e3ebf4;
}

/* UNTUK ASSIGNMENTS */
.assignment-summary-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.25rem;
}

.assignment-summary-icon.assigned {
    color: #16865b;
    background: #e7f8ef;
}

.assignment-summary-icon.unassigned {
    color: #d78a00;
    background: #fff4d8;
}

.assignment-project-column {
    min-width: 320px;
    text-align: left !important;
}

.assignment-project {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assignment-project-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf6ff;
}

.assignment-project > div:last-child {
    min-width: 0;
}

.assignment-project strong {
    display: block;
    color: #07152c;
    font-size: .86rem;
    font-weight: 900;
    line-height: 1.35;
}

.assignment-project small {
    display: block;
    margin-top: 4px;
    color: #71839a;
    font-size: .76rem;
    font-weight: 700;
}

.assignment-jury-column {
    min-width: 270px;
    text-align: left !important;
}

.assigned-jury-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.assigned-jury-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border: 1px solid #e2ebf4;
    border-radius: 10px;
    background: #f9fbfd;
}

.assigned-jury-avatar {
    display: flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: #0875cc;
    background: #e5f4ff;
    font-size: .8rem;
}

.assigned-jury-info {
    min-width: 0;
    flex: 1;
}

.assigned-jury-info strong {
    display: block;
    overflow: hidden;
    color: #163b68;
    font-size: .72rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assigned-jury-info small {
    display: block;
    margin-top: 1px;
    overflow: hidden;
    color: #8493a6;
    font-size: .65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assignment-mini-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: .6rem;
    font-weight: 900;
    white-space: nowrap;
}

.assignment-mini-status.assigned {
    color: #0875cc;
    background: #e7f5ff;
}

.assignment-mini-status.in_progress {
    color: #b77700;
    background: #fff3d3;
}

.assignment-mini-status.completed {
    color: #16865b;
    background: #e5f8ee;
}

.assignment-remove-button {
    display: flex;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    color: #d44755;
    background: #fff0f2;
    font-size: .68rem;
    transition: .2s ease;
}

.assignment-remove-button:hover {
    color: #ffffff;
    background: #dc3545;
}

.assignment-empty-jury {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #98a5b5;
    font-size: .78rem;
    font-weight: 700;
}

.assignment-project-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    font-weight: 900;
    white-space: nowrap;
}

.assignment-project-status > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.assignment-project-status.unassigned {
    color: #b77700;
}

.assignment-project-status.unassigned > span {
    background: #f2a51a;
}

.assignment-project-status.assigned {
    color: #0875cc;
}

.assignment-project-status.assigned > span {
    background: #1b98e0;
}

.assignment-project-status.progress {
    color: #16865b;
}

.assignment-project-status.progress > span {
    background: #26b77a;
}

.assignment-modal-section {
    margin-top: 10px;
}

.assignment-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.assignment-modal-title > div:first-child {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf6ff;
}

.assignment-modal-title > div:last-child {
    display: flex;
    flex-direction: column;
}

.assignment-modal-title strong {
    color: #0a2d58;
    font-size: .82rem;
    font-weight: 900;
}

.assignment-modal-title small {
    margin-top: 2px;
    color: #8291a4;
    font-size: .73rem;
}

.jury-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.jury-selection-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 78px;
    padding: 13px 42px 13px 13px;
    border: 1px solid #dce8f4;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: .2s ease;
}

.jury-selection-card:hover {
    border-color: #8cccf3;
    background: #f8fcff;
}

.jury-selection-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.jury-selection-card:has(input:checked) {
    border-color: #38a3e5;
    background: #f0f9ff;
    box-shadow: 0 0 0 2px rgba(8, 117, 204, .06);
}

.jury-selection-card:has(input:disabled) {
    cursor: not-allowed;
    opacity: .65;
}

.jury-selection-check {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border: 1px solid #cedbe8;
    border-radius: 6px;
    color: transparent;
    background: #ffffff;
    font-size: .7rem;
}

.jury-selection-card input:checked ~ .jury-selection-check {
    border-color: #0875cc;
    color: #ffffff;
    background: #0875cc;
}

.jury-selection-avatar {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf6ff;
}

.jury-selection-info {
    min-width: 0;
}

.jury-selection-info strong {
    display: block;
    color: #0b2d56;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.3;
}

.jury-selection-info span,
.jury-selection-info small {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: #7e8fa3;
    font-size: .68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assignment-selected-project {
    padding: 15px 17px;
    margin-bottom: 22px;
    border: 1px solid #dce8f4;
    border-radius: 12px;
    background: #f7fbff;
}

.assignment-selected-project span {
    display: block;
    margin-bottom: 4px;
    color: #0875cc;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .7px;
}

.assignment-selected-project strong {
    color: #0a2d58;
    font-size: .9rem;
    font-weight: 900;
}

.assignment-locked-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #f1d798;
    border-radius: 11px;
    color: #8b650b;
    background: #fff9e8;
}

.assignment-locked-message > i {
    margin-top: 2px;
}

.assignment-locked-message div {
    display: flex;
    flex-direction: column;
}

.assignment-locked-message strong {
    font-size: .88rem;
}

.assignment-locked-message span {
    margin-top: 2px;
    font-size: .88rem;
}

.assignment-no-jury {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 20px;
    color: #8291a4;
    text-align: center;
}

.assignment-no-jury i {
    margin-bottom: 10px;
    font-size: 2rem;
}

.assignment-no-jury strong {
    color: #40536b;
}

.assignment-no-jury span {
    margin-top: 4px;
    font-size: .75rem;
}

@media (max-width: 767px) {
    .jury-selection-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   JURY - ASSIGNED PROJECTS
========================================================= */

.jury-project-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 38px 25px;
}

.jury-project-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 120px;
    padding: 22px;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #ffffff;
}

.jury-project-stat-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.2rem;
}

.jury-project-stat-icon.blue {
    color: #0875cc;
    background: #e8f5ff;
}

.jury-project-stat-icon.gold {
    color: #c48700;
    background: #fff4d5;
}

.jury-project-stat-icon.purple {
    color: #7655c5;
    background: #f0ebff;
}

.jury-project-stat-icon.green {
    color: #16865b;
    background: #e7f8ef;
}

.jury-project-stat-card span {
    display: block;
    color: #667b97;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .3px;
}

.jury-project-stat-card strong {
    display: block;
    margin-top: 2px;
    color: #07152c;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}

.jury-project-stat-card small {
    display: block;
    margin-top: 5px;
    color: #8b9aae;
    font-size: .72rem;
}

.jury-project-section {
    margin: 0 38px 40px;
    padding: 25px;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #ffffff;
}

.jury-project-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7edf4;
}

.jury-project-section-header > div > span {
    color: #0875cc;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.jury-project-section-header h3 {
    margin: 3px 0 2px;
    color: #07152c;
    font-size: 1.3rem;
    font-weight: 900;
}

.jury-project-section-header p {
    margin: 0;
    color: #8391a4;
    font-size: .77rem;
}

.jury-project-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jury-project-search {
    position: relative;
    width: 230px;
}

.jury-project-search i {
    position: absolute;
    top: 50%;
    left: 13px;
    color: #8998aa;
    transform: translateY(-50%);
}

.jury-project-search input {
    width: 100%;
    height: 40px;
    padding: 0 13px 0 38px;
    border: 1px solid #d6e2ee;
    border-radius: 10px;
    outline: none;
    color: #233b59;
    font-size: .76rem;
    background: #ffffff;
}

.jury-project-search input:focus {
    border-color: #68b8ea;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .07);
}

.jury-project-filter .form-select {
    width: 145px;
    height: 40px;
    border-color: #d6e2ee;
    border-radius: 10px;
    color: #52667f;
    font-size: .75rem;
}

.jury-project-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
}

.jury-project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px;
    border: 1px solid #e0e9f2;
    border-radius: 15px;
    background: #ffffff;
    transition: .2s ease;
}

.jury-project-card:hover {
    border-color: #bcd9ed;
    box-shadow: 0 7px 22px rgba(22, 60, 100, .07);
    transform: translateY(-1px);
}

.jury-project-card-main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1;
}

.jury-project-category-icon {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    color: #0875cc;
    background: #eaf6ff;
    font-size: 1.2rem;
}

.jury-project-details {
    min-width: 0;
}

.jury-project-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.jury-project-code {
    color: #0875cc;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .5px;
}

.jury-project-details h4 {
    margin: 0;
    color: #07152c;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.4;
}

.jury-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 8px;
}

.jury-project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #718198;
    font-size: .69rem;
}

.jury-project-meta i {
    color: #2b8dcd;
}

.jury-project-card-side {
    display: flex;
    flex: 0 0 205px;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
}

.jury-assignment-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.jury-assignment-status i {
    font-size: .78rem;
}

.jury-assignment-status.assigned {
    color: #b77700;
    background: #fff4d7;
}

.jury-assignment-status.progress {
    color: #6e51b5;
    background: #f0ebff;
}

.jury-assignment-status.completed {
    color: #16865b;
    background: #e5f8ee;
}

.jury-project-resources {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jury-project-resources a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 82px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #cbdbea;
    border-radius: 8px;
    color: #496986;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    background: #ffffff;
    transition: .2s ease;
}

.jury-project-resources a i {
    color: #0875cc;
    font-size: .8rem;
}

.jury-project-resources a:hover {
    border-color: #0875cc;
    color: #0875cc;
    background: #eef8ff;
    transform: translateY(-1px);
}

.jury-evaluate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 220px;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 9px;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    background: #16865b;
    transition: .2s ease;
}

.jury-evaluate-button i {
    font-size: .95rem;
}

.jury-evaluate-button:hover {
    color: #ffffff;
    background: #0f704a;
    box-shadow: 0 5px 14px rgba(22, 134, 91, .20);
    transform: translateY(-1px);
}

.jury-evaluate-button.progress {
    background: #7356bd;
}

.jury-evaluate-button.progress:hover {
    background: #6046a3;
}

.jury-evaluate-button.completed {
    color: #14754f;
    background: #e6f8ef;
}

.jury-evaluate-button.completed:hover {
    color: #ffffff;
    background: #16865b;
}

.jury-project-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
    padding: 60px 20px;
    margin: auto;
    text-align: center;
}

.jury-project-empty > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
    border-radius: 18px;
    color: #7a91aa;
    background: #edf4fa;
    font-size: 1.5rem;
}

.jury-project-empty h4 {
    margin-bottom: 7px;
    color: #173858;
    font-size: 1rem;
    font-weight: 900;
}

.jury-project-empty p {
    max-width: 440px;
    margin-bottom: 16px;
    color: #8391a4;
    font-size: .77rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .jury-project-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jury-project-section-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .jury-project-stats {
        grid-template-columns: 1fr;
        margin: 20px;
    }

    .jury-project-section {
        margin: 0 20px 30px;
    }

    .jury-project-filter {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .jury-project-search,
    .jury-project-filter .form-select {
        width: 100%;
    }

    .jury-project-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .jury-project-card-side {
        width: 100%;
        flex-basis: auto;
        align-items: flex-start;
    }
}

/* =========================================================
   JURY - EVALUATION
========================================================= */

.evaluation-page {
    padding: 28px 38px 45px;
}

.evaluation-back-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.evaluation-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #526c89;
    font-size: .76rem;
    font-weight: 800;
    text-decoration: none;
}

.evaluation-back-button:hover {
    color: #0875cc;
}

.evaluation-page-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
}

.evaluation-page-status.new {
    color: #b77700;
    background: #fff3d3;
}

.evaluation-page-status.draft {
    color: #684cb0;
    background: #eee8ff;
}

.evaluation-page-status.submitted {
    color: #16865b;
    background: #e4f8ed;
}

.evaluation-project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px;
    border-radius: 18px;
    color: #ffffff;
    background: #082d5b;
}

.evaluation-project-main {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
}

.evaluation-project-icon {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    color: #ffc42e;
    background: rgba(255, 255, 255, .1);
    font-size: 1.3rem;
}

.evaluation-project-info {
    min-width: 0;
}

.evaluation-project-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.evaluation-project-code {
    color: #ffc42e;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .6px;
}

.evaluation-project-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.4;
}

.evaluation-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 9px;
}

.evaluation-project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd9e9;
    font-size: .7rem;
}

.evaluation-project-resources {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.evaluation-project-resources a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    color: #ffffff;
    font-size: .74rem;
    font-weight: 900;
    text-decoration: none;
    background: rgba(255, 255, 255, .08);
}

.evaluation-project-resources a:hover {
    color: #082d5b;
    background: #ffc42e;
}

.evaluation-instruction {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 18px;
    margin-top: 18px;
    border: 1px solid #b9ddf3;
    border-radius: 13px;
    color: #245a7c;
    background: #fff3d3;
}

.evaluation-instruction > div:first-child {
    color: #0875cc;
    font-size: 1.05rem;
}

.evaluation-instruction strong {
    display: block;
    margin-bottom: 3px;
    color: #174c70;
    font-size: .8rem;
}

.evaluation-instruction p {
    margin: 0;
    font-size: .73rem;
    line-height: 1.55;
}

.evaluation-progress-card {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    align-items: center;
    gap: 22px;
    padding: 19px 22px;
    margin-top: 18px;
    border: 1px solid #dce7f2;
    border-radius: 15px;
    background: #ffffff;
}

.evaluation-progress-card > div:first-child > span,
.evaluation-live-score > span {
    display: block;
    margin-bottom: 3px;
    color: #72849b;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .5px;
}

.evaluation-progress-card > div:first-child > strong {
    color: #153b67;
    font-size: .8rem;
}

.evaluation-progress-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef5;
}

.evaluation-progress-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: #16865b;
    transition: width .25s ease;
}

.evaluation-live-score {
    text-align: right;
}

.evaluation-live-score strong {
    color: #16865b;
    font-size: 1.35rem;
    font-weight: 900;
}

.evaluation-live-score small {
    color: #8392a5;
    font-size: .72rem;
}

.evaluation-criteria-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.evaluation-criterion-card {
    overflow: hidden;
    border: 1px solid #dce7f2;
    border-radius: 16px;
    background: #ffffff;
}

.evaluation-criterion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid #e7edf4;
    background: #fbfdff;
}

.evaluation-criterion-number {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #ffffff;
    background: #0875cc;
    font-size: .9rem;
    font-weight: 900;
}

.evaluation-criterion-heading {
    flex: 1;
}

.evaluation-criterion-heading span {
    display: block;
    color: #0875cc;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .7px;
}

.evaluation-criterion-heading h3 {
    margin: 3px 0 0;
    color: #0b2d56;
    font-size: .95rem;
    font-weight: 900;
}

.evaluation-weight {
    min-width: 90px;
    text-align: right;
}

.evaluation-weight span {
    display: block;
    color: #8796a9;
    font-size: .6rem;
    font-weight: 900;
}

.evaluation-weight strong {
    color: #d38a00;
    font-size: 1.05rem;
    font-weight: 900;
}

.evaluation-score-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 20px;
}

.evaluation-score-option {
    cursor: pointer;
}

.evaluation-score-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.evaluation-score-selector {
    position: relative;
    height: 100%;
    min-height: 145px;
    padding: 14px;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    background: #ffffff;
    transition: .2s ease;
}

.evaluation-score-option:hover .evaluation-score-selector {
    border-color: #8dc9ed;
    background: #f8fcff;
}

.evaluation-score-option input:checked + .evaluation-score-selector {
    border-color: #0875cc;
    background: #eef8ff;
    box-shadow: 0 0 0 2px rgba(8, 117, 204, .06);
}

.evaluation-score-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #526b88;
    background: #edf3f8;
    font-size: .78rem;
    font-weight: 900;
}

.evaluation-score-option input:checked + .evaluation-score-selector .evaluation-score-number {
    color: #ffffff;
    background: #0875cc;
}

.evaluation-score-content strong {
    display: block;
    margin-bottom: 5px;
    color: #173a62;
    font-size: .76rem;
    font-weight: 900;
}

.evaluation-score-content p {
    margin: 0;
    color: #75869b;
    font-size: .68rem;
    line-height: 1.5;
}

.evaluation-score-check {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #ffffff;
    background: #16865b;
    font-size: .65rem;
}

.evaluation-score-option input:checked + .evaluation-score-selector .evaluation-score-check {
    display: flex;
}

.evaluation-score-option input:disabled + .evaluation-score-selector {
    cursor: default;
}

.evaluation-criterion-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding: 10px 20px;
    border-top: 1px solid #edf1f5;
    background: #fafcfe;
}

.evaluation-criterion-footer span {
    color: #75869a;
    font-size: .68rem;
    font-weight: 800;
}

.evaluation-criterion-footer strong {
    color: #16865b;
    font-size: .78rem;
}

.evaluation-comments-card {
    position: relative;
    padding: 20px;
    margin-top: 18px;
    border: 1px solid #dce7f2;
    border-radius: 16px;
    background: #ffffff;
}

.evaluation-comments-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.evaluation-comments-heading > div:first-child {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #0875cc;
    background: #eaf6ff;
}

.evaluation-comments-heading span {
    color: #0875cc;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .6px;
}

.evaluation-comments-heading h3 {
    margin: 1px 0;
    color: #0b2d56;
    font-size: .95rem;
    font-weight: 900;
}

.evaluation-comments-heading p {
    margin: 0;
    color: #8291a4;
    font-size: .8rem;
    line-height: 1.5;
}

.evaluation-comments-card textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #d6e1ec;
    border-radius: 10px;
    outline: none;
    resize: vertical;
    color: #334c68;
    font-size: .88rem;
}

.evaluation-comments-card textarea:focus {
    border-color: #65b6e8;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .07);
}

.evaluation-comment-counter {
    margin-top: 6px;
    color: #8b99aa;
    font-size: .66rem;
    text-align: right;
}

.evaluation-submit-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    margin-top: 18px;
    border: 1px solid #dce7f2;
    border-radius: 15px;
    background: #ffffff;
}

.evaluation-submit-section > div:first-child span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0b2d56;
    font-size: .88rem;
    font-weight: 900;
}

.evaluation-submit-section .evaluation-submitted-note {
    color: #16865b;
    font-weight: 800;
}

.evaluation-form-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.evaluation-cancel-button,
.evaluation-draft-button,
.evaluation-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 41px;
    padding: 0 15px;
    border-radius: 9px;
    font-size: .76rem;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.evaluation-cancel-button {
    border: 1px solid #d5e0ea;
    color: #5e7189;
    background: #ffffff;
}

.evaluation-draft-button {
    border: 1px solid #d9c8ff;
    color: #6748b0;
    background: #f2edff;
}

.evaluation-submit-button {
    border: 1px solid #16865b;
    color: #ffffff;
    background: #16865b;
}

.evaluation-submit-button:hover {
    border-color: #0f704a;
    color: #ffffff;
    background: #0f704a;
}

@media (max-width: 1100px) {
    .evaluation-score-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evaluation-progress-card {
        grid-template-columns: 1fr;
    }

    .evaluation-live-score {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .evaluation-page {
        padding: 20px;
    }

    .evaluation-project-card,
    .evaluation-submit-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .evaluation-project-resources {
        flex-wrap: wrap;
    }

    .evaluation-score-options {
        grid-template-columns: 1fr;
    }

    .evaluation-form-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .evaluation-cancel-button,
    .evaluation-draft-button,
    .evaluation-submit-button {
        width: 100%;
    }
}

/* =========================================================
   EVALUATION - FONT SIZE IMPROVEMENT
========================================================= */

.evaluation-instruction strong {
    font-size: .9rem;
}

.evaluation-instruction p {
    font-size: .82rem;
    line-height: 1.6;
}

.evaluation-progress-card > div:first-child > span,
.evaluation-live-score > span {
    font-size: .72rem;
}

.evaluation-progress-card > div:first-child > strong {
    font-size: .9rem;
}

.evaluation-live-score strong {
    font-size: 1.5rem;
}

.evaluation-live-score small {
    font-size: .8rem;
}

.evaluation-criterion-heading span {
    font-size: .72rem;
}

.evaluation-criterion-heading h3 {
    margin-top: 4px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.evaluation-weight span {
    font-size: .68rem;
}

.evaluation-weight strong {
    font-size: 1.2rem;
}

.evaluation-score-selector {
    min-height: 165px;
    padding: 16px;
}

.evaluation-score-number {
    width: 34px;
    height: 34px;
    font-size: .88rem;
}

.evaluation-score-content strong {
    margin-bottom: 7px;
    font-size: .88rem;
    line-height: 1.35;
}

.evaluation-score-content p {
    font-size: .78rem;
    line-height: 1.6;
}

.evaluation-score-check {
    width: 25px;
    height: 25px;
    font-size: .72rem;
}

.evaluation-criterion-footer {
    padding: 12px 20px;
}

.evaluation-criterion-footer span {
    font-size: .76rem;
}

.evaluation-criterion-footer strong {
    font-size: .86rem;
}

/* =========================================================
   EVALUATION - STICKY NAVIGATOR
========================================================= */

.evaluation-progress-card {
    position: sticky;
    top: 15px;
    z-index: 50;
    display: block;
    padding: 16px 20px;
    margin-top: 18px;
    border: 1px solid #d7e4ef;
    border-radius: 15px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 25px rgba(10, 45, 82, .09);
    backdrop-filter: blur(8px);
}

.evaluation-progress-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.evaluation-progress-summary > div:first-child > span,
.evaluation-live-score > span {
    display: block;
    margin-bottom: 3px;
    color: #72849b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .5px;
}

.evaluation-progress-summary > div:first-child > strong {
    color: #153b67;
    font-size: .9rem;
    font-weight: 900;
}

.evaluation-live-score {
    text-align: right;
}

.evaluation-live-score strong {
    color: #16865b;
    font-size: 1.35rem;
    font-weight: 900;
}

.evaluation-live-score small {
    color: #8392a5;
    font-size: .75rem;
}

.evaluation-progress-track {
    width: 100%;
    height: 7px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef5;
}

.evaluation-progress-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: #16865b;
    transition: width .3s ease;
}

.evaluation-criterion-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 13px;
}

.evaluation-navigation-label {
    flex: 0 0 auto;
    color: #687d95;
    font-size: .72rem;
    font-weight: 900;
}

.evaluation-navigation-buttons {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.evaluation-nav-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #d3dfeb;
    border-radius: 9px;
    color: #637891;
    background: #f4f7fa;
    font-size: .76rem;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.evaluation-nav-button:hover {
    border-color: #0875cc;
    color: #0875cc;
    background: #edf8ff;
    transform: translateY(-1px);
}

.evaluation-nav-button.completed {
    border-color: #16865b;
    color: #ffffff;
    background: #16865b;
}

.evaluation-nav-button.completed .evaluation-nav-number {
    display: none;
}

.evaluation-nav-button.completed i {
    display: block;
}

.evaluation-nav-button i {
    display: none;
    font-size: .82rem;
}

.evaluation-nav-button.current {
    border-color: #0875cc;
    color: #ffffff;
    background: #0875cc;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .12);
}

.evaluation-nav-button.current .evaluation-nav-number {
    display: block;
}

.evaluation-nav-button.current i {
    display: none;
}

.evaluation-criterion-card {
    scroll-margin-top: 165px;
}

@media (max-width: 767px) {
    .evaluation-progress-card {
        top: 8px;
        padding: 14px;
    }

    .evaluation-progress-summary {
        align-items: flex-start;
    }

    .evaluation-criterion-navigation {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .evaluation-navigation-buttons {
        gap: 5px;
    }

    .evaluation-nav-button {
        width: 31px;
        height: 31px;
    }

    .evaluation-criterion-card {
        scroll-margin-top: 190px;
    }
}

.evaluation-criterion-card {
    transition: border-color .25s ease, box-shadow .25s ease;
}

.evaluation-criterion-card.current-criterion {
    border-color: #0875cc;
    box-shadow: 0 0 0 2px rgba(8, 117, 204, .08),
                0 8px 22px rgba(8, 117, 204, .08);
}

.evaluation-criterion-card.current-criterion .evaluation-criterion-header {
    background: #f2f9ff;
}

/* =========================================================
   JURY - CUSTOM STATUS FILTER
========================================================= */

.jury-status-dropdown {
    position: relative;
    min-width: 175px;
}

.jury-status-dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #cbdbea;
    border-radius: 10px;
    color: #405a75;
    background: #ffffff;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.jury-status-dropdown-button:hover {
    border-color: #8fc5e8;
    background: #fbfdff;
}

.jury-status-dropdown-button[aria-expanded="true"] {
    border-color: #0875cc;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .1);
}

.jury-status-current {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.jury-status-current > i {
    color: #0875cc;
    font-size: .8rem;
}

.jury-status-chevron {
    color: #7b8da1;
    font-size: .7rem;
    transition: transform .2s ease;
}

.jury-status-dropdown-button[aria-expanded="true"] .jury-status-chevron {
    transform: rotate(180deg);
}

.jury-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.jury-status-dot.not-started {
    background: #d69a20;
}

.jury-status-dot.in-progress {
    background: #7356bd;
}

.jury-status-dot.completed {
    background: #16865b;
}

.jury-status-dropdown-menu {
    width: 245px;
    padding: 7px;
    margin-top: 7px !important;
    border: 1px solid #d7e3ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(19, 52, 87, .14);
}

.jury-status-dropdown-menu .dropdown-item {
    border-radius: 8px;
}

.jury-status-option {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px;
    color: #405a75;
    background: transparent;
    white-space: normal;
    transition: .15s ease;
}

.jury-status-option:hover {
    color: #153b67;
    background: #f2f8fd;
}

.jury-status-option.active,
.jury-status-option.active:hover {
    color: #153b67;
    background: #eaf6ff;
}

.jury-status-option-icon {
    display: flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: .76rem;
}

.jury-status-option-icon.all {
    color: #0875cc;
    background: #e9f5ff;
}

.jury-status-option-icon.not-started {
    color: #b87900;
    background: #fff3d7;
}

.jury-status-option-icon.in-progress {
    color: #6748b0;
    background: #f0eaff;
}

.jury-status-option-icon.completed {
    color: #16865b;
    background: #e5f8ee;
}

.jury-status-option > span:last-child {
    display: flex;
    flex-direction: column;
}

.jury-status-option strong {
    color: inherit;
    font-size: .8rem;
    font-weight: 800;
}

.jury-status-option small {
    margin-top: 1px;
    color: #8a99aa;
    font-size: .66rem;
    font-weight: 500;
}

/* =========================================================
   ADMIN - SYSTEM SETTINGS
========================================================= */

.settings-page {
    padding: 28px;
}

.settings-page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.settings-page-heading > div:first-child > span {
    color: #0875cc;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.settings-page-heading h2 {
    margin: 4px 0 5px;
    color: #173b63;
    font-size: 1.45rem;
    font-weight: 800;
}

.settings-page-heading p {
    margin: 0;
    color: #75879a;
    font-size: .8rem;
}

.settings-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid #cfe5f5;
    border-radius: 9px;
    color: #0875cc;
    background: #eef8ff;
    font-size: .88rem;
    font-weight: 800;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.settings-card {
    padding: 22px;
    border: 1px solid #dce6ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(16, 55, 92, .05);
}

.settings-card-wide {
    grid-column: 1 / -1;
}

.settings-card-header {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding-bottom: 17px;
    margin-bottom: 18px;
    border-bottom: 1px solid #edf2f6;
}

.settings-card-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 1rem;
}

.settings-card-icon.blue {
    color: #0875cc;
    background: #e8f5ff;
}

.settings-card-icon.purple {
    color: #6e50b7;
    background: #f0eaff;
}

.settings-card-icon.gold {
    color: #ad7a08;
    background: #fff3d1;
}

.settings-card-header span {
    color: #0875cc;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.settings-card-header h3 {
    margin: 2px 0 3px;
    color: #173b63;
    font-size: 1rem;
    font-weight: 800;
}

.settings-card-header p {
    margin: 0;
    color: #8291a1;
    font-size: .72rem;
    line-height: 1.5;
}

.settings-field label {
    display: block;
    margin-bottom: 3px;
    color: #304f70;
    font-size: .88rem;
    font-weight: 800;
}

.settings-field > p {
    margin-bottom: 10px;
    color: #8796a6;
    font-size: .88rem;
}

.settings-field .form-select {
    height: 44px;
    border-color: #d3e0eb;
    border-radius: 9px;
    color: #405a75;
    font-size: .88rem;
    font-weight: 700;
}

.settings-field .form-select:focus {
    border-color: #0875cc;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .1);
}

.settings-info-box {
    display: flex;
    gap: 10px;
    padding: 12px 13px;
    margin-top: 15px;
    border: 1px solid #d5eafa;
    border-radius: 9px;
    color: #426481;
    background: #f4faff;
}

.settings-info-box > i {
    margin-top: 2px;
    color: #0875cc;
}

.settings-info-box div {
    display: flex;
    flex-direction: column;
}

.settings-info-box strong {
    color: #28557e;
    font-size: .88rem;
}

.settings-info-box span {
    margin-top: 2px;
    font-size: .88rem;
    line-height: 1.5;
}

.settings-award-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.settings-award-box {
    padding: 17px;
    border: 1px solid #e1e7ed;
    border-radius: 12px;
}

.settings-award-box.gold {
    border-color: #ecdcae;
    background: #fffcf3;
}

.settings-award-box.silver {
    border-color: #d9e0e7;
    background: #fafcfd;
}

.settings-award-box.bronze {
    border-color: #e6d0c1;
    background: #fff9f5;
}

.settings-award-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
}

.settings-award-title > i {
    font-size: 1.25rem;
}

.settings-award-box.gold .settings-award-title > i {
    color: #c79517;
}

.settings-award-box.silver .settings-award-title > i {
    color: #8493a1;
}

.settings-award-box.bronze .settings-award-title > i {
    color: #a86b45;
}

.settings-award-title div {
    display: flex;
    flex-direction: column;
}

.settings-award-title strong {
    color: #294b6c;
    font-size: .8rem;
}

.settings-award-title span {
    color: #8b98a5;
    font-size: .66rem;
}

.settings-award-box label {
    display: block;
    margin-bottom: 6px;
    color: #64788c;
    font-size: .68rem;
    font-weight: 700;
}

.settings-score-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #d7e1e9;
    border-radius: 8px;
    background: #ffffff;
}

.settings-score-input:focus-within {
    border-color: #0875cc;
    box-shadow: 0 0 0 3px rgba(8, 117, 204, .08);
}

.settings-score-input input {
    width: 100%;
    height: 40px;
    padding: 0 11px;
    border: 0;
    outline: none;
    color: #294b6c;
    background: transparent;
    font-size: .85rem;
    font-weight: 800;
}

.settings-score-input span {
    padding: 0 12px;
    color: #8090a0;
    font-size: .78rem;
    font-weight: 800;
}

.settings-bronze-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #e2d6ce;
    border-radius: 8px;
    color: #78685d;
    background: #ffffff;
    font-size: .75rem;
}

.settings-bronze-value strong {
    color: #9b6240;
    font-size: .9rem;
}

.settings-award-rule {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    margin-top: 15px;
    border-radius: 8px;
    color: #6b5c30;
    background: #fff8e5;
    font-size: .69rem;
}

.settings-award-rule i {
    color: #c59413;
}

.settings-save-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    margin-top: 18px;
    border: 1px solid #dce6ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(16, 55, 92, .05);
}

.settings-save-bar > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #788a9b;
    font-size: .7rem;
}

.settings-save-bar > div i {
    color: #0875cc;
}

.settings-save-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 17px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #0875cc;
    font-size: .76rem;
    font-weight: 800;
    transition: .2s ease;
}

.settings-save-button:hover {
    background: #0565af;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .settings-grid,
    .settings-award-grid {
        grid-template-columns: 1fr;
    }

    .settings-card-wide {
        grid-column: auto;
    }

    .settings-page-heading,
    .settings-save-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .settings-status-badge {
        align-self: flex-start;
    }
}

/* =========================================================
   SYSTEM SETTINGS - FONT SIZE IMPROVEMENT
========================================================= */

.settings-card-header span {
    font-size: .72rem;
}

.settings-card-header h3 {
    font-size: 1.08rem;
}

.settings-card-header p {
    font-size: .8rem;
    line-height: 1.55;
}

.settings-award-title strong {
    font-size: .9rem;
}

.settings-award-title span {
    margin-top: 2px;
    font-size: .74rem;
}

.settings-award-box label {
    margin-bottom: 7px;
    font-size: .88rem;
}

.settings-score-input input {
    font-size: .95rem;
}

.settings-score-input span {
    font-size: .82rem;
}

.settings-bronze-value {
    font-size: .8rem;
}

.settings-bronze-value strong {
    font-size: .95rem;
}

.settings-award-rule {
    padding: 12px 14px;
    font-size: .88rem;
    line-height: 1.5;
}

.settings-award-rule i {
    font-size: .82rem;
}

.settings-save-bar > div {
    font-size: .95rem;
}

.settings-save-bar > div i {
    font-size: .82rem;
}

.settings-save-button {
    min-height: 42px;
    padding: 0 18px;
    font-size: .8rem;
}