/* ===========================
   OSK RONDO – Global Styles
   =========================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:       #0D1A63;
    --navy-mid:   #172897;
    --navy-light: #2845D6;
    --accent:     #F68048;
    --accent-dark:#e68048;
    --text:       #1a1a2e;
    --text-muted: #5a6080;
    --bg-light:   #f4f6fb;
    --bg-white:   #ffffff;
    --radius:     12px;
    --radius-sm:  8px;
    --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ===========================
   HEADER / NAV
   =========================== */

header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    min-height: 58px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap; /* DODANE: Zapobiega łamaniu logo */
}

.logo span { color:var(--navy-light); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    display: flex;
    align-items: center; /* DODANE: Wyśrodkowanie w pionie */
    list-style: none;
    gap: 4px;
}

nav ul li a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    display: block;
    white-space: nowrap; /* DODANE: Trzyma tekst w jednej linii */
}

nav ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.login-btn {
    display: inline-block;
    background: var(--accent) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm) !important;
    transition: background 0.2s, transform 0.15s !important;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 1150px) {
    nav { padding: 14px 20px; }
    
    .hamburger { display: flex; }
    
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 20px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    #nav-auth {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}

/* ===========================
   HERO
   =========================== */

.hero {
    position: relative;
    height: 88vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* Zmiana tła na Twoje zdjęcie i wyrównanie do dołu, by nie ucięło baneru na małych ekranach */
    background: url("img/plac-baner.jpg") center bottom / cover no-repeat;
    background-color: var(--navy-mid);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Sprytny gradient: mocno ciemny po lewej (pod tekstem), niemal przezroczysty po prawej (żeby pokazać plac) */
    background: linear-gradient(100deg, rgba(13, 26, 99, 0.95) 35%, rgba(13, 26, 99, 0.6) 65%, rgba(32, 48, 90, 0.1) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(36px, 5.5vw, 68px); /* Delikatnie pomniejszony tekst, by był bardziej elegancki */
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span { color: var(--accent); }

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-primary.large { padding: 18px 44px; font-size: 17px; }

.btn-ghost {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }

/* Modal buttons - better visibility */
.admin-modal-content .btn-ghost {
    color: var(--navy);
    border: 1.5px solid #dde3f0;
    background: #f5f7fa;
}

.admin-modal-content .btn-ghost:hover {
    border-color: var(--navy);
    background: #e8ecf3;
}

/* ===========================
   PROMO BAR
   =========================== */

.promo-bar {
    background: var(--accent);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
    text-align: center;
}

.promo-tag {
    background: var(--navy);
    color: var(--accent);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 4px;
}

.promo-link { color: var(--navy); font-weight: 800; text-decoration: underline; }
.promo-link:hover { opacity: 0.7; }

/* ===========================
   SECTIONS
   =========================== */

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-light { background: var(--bg-white); padding: 90px 20px; }
.section-dark { background: var(--navy); padding: 90px 20px; }

.section-cta {
    background: var(--navy-mid);
    padding: 80px 20px;
    text-align: center;
}

.section-cta h2 { font-weight: 900; font-size: 40px; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.section-cta p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; }

.section-header { margin-bottom: 50px; text-align: center; }

.section-header h2 {
    font-weight: 900;
    font-size: 36px;
    color: var(--navy);
    margin-top: 8px;
    letter-spacing: -0.5px;
}

.section-header.light h2 { color: #fff; }

.section-label {
    display: inline-block;
    color: var(--navy-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-header.light .section-label { color: var(--accent); }

/* ===========================
   DATE CARDS
   =========================== */

.dates-grid { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.date-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border: 2px solid #dde3f0;
    border-radius: var(--radius);
    padding: 18px 26px;
    min-width: 140px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

.date-card:hover { border-color: var(--navy-light); transform: translateY(-3px); }
.date-num { font-weight: 900; font-size: 46px; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.date-rest { display: flex; flex-direction: column; gap: 2px; }
.date-month { font-size: 14px; font-weight: 800; color: var(--navy-light); text-transform: uppercase; letter-spacing: 1px; }
.date-year { font-size: 12px; color: var(--text-muted); }
.dates-note { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }

.course-modes { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.mode-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px 32px;
    min-width: 260px;
    border: 1.5px solid #dde3f0;
}

.mode-icon { font-size: 30px; flex-shrink: 0; }
.mode-item strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.mode-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===========================
   COURSE CARDS – DARK (index)
   =========================== */

.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

@media (max-width: 900px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .courses-grid { grid-template-columns: 1fr; } }

.course-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color 0.2s, background 0.2s;
}

.course-card:hover { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.08); }
.course-card.featured { border-color: var(--accent); background: rgba(232,180,0,0.06); }

.course-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.course-card h3 { font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 4px; }
.course-card h3 small { font-size: 14px; font-weight: 500; opacity: 0.75; }
.course-date { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.course-price { font-weight: 900; font-size: 26px; color: var(--accent); margin-bottom: 14px; }

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.75);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.toggle-btn:hover { border-color: rgba(255,255,255,0.55); color: #fff; background: rgba(255,255,255,0.05); }
.toggle-arrow { font-size: 13px; line-height: 1; }

.course-more { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, margin-top 0.3s ease; }
.course-more.open { max-height: 300px; margin-top: 12px; }

.course-more p {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent);
    padding: 12px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   COURSE CARDS – LIGHT (kursy/cennik)
   =========================== */

.course-card-light {
    background: var(--bg-white);
    border: 1.5px solid #dde3f0;
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color 0.2s, transform 0.2s;
}

.course-card-light:hover { border-color: var(--navy-light); transform: translateY(-3px); }
.course-card-light.featured-light { border-color: var(--navy-light); }

.course-badge-light {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.course-card-light h3 { font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.course-card-light h3 small { font-size: 14px; font-weight: 500; opacity: 0.7; }
.course-card-light p { font-size: 14px; color: var(--text-muted); margin: 4px 0; }
.course-price-light { font-weight: 900; font-size: 26px; color: var(--navy-light) !important; margin-bottom: 14px !important; }

.toggle-btn-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 1px solid #dde3f0;
    color: var(--navy);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.toggle-btn-light:hover { border-color: var(--navy-light); background: var(--bg-light); }

.course-more-light { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, margin-top 0.3s ease; }
.course-more-light.open { max-height: 300px; margin-top: 12px; }

.course-more-light p {
    background: var(--bg-light);
    border-left: 3px solid var(--navy-light);
    padding: 12px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 !important;
}

/* ===========================
   FEATURES GRID
   =========================== */

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
    nav { padding: 12px 20px; }
    .hero-inner { padding: 0 24px; }
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1.5px solid #dde3f0;
    transition: transform 0.2s, border-color 0.2s;
}

.feature:hover { transform: translateY(-4px); border-color: #aabbd8; }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h4 { font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===========================
   FOOTER
   =========================== */

footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
}

/* ===========================
   LOGIN PAGE
   =========================== */

.login-container {
    max-width: 420px;
    margin: 70px auto;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1.5px solid #dde3f0;
}

.login-container h2 { font-weight: 900; font-size: 28px; color: var(--navy); text-align: center; margin-bottom: 28px; }

.login-container input {
    display: block;
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border: 1.5px solid #dde3f0;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s;
}

.login-container input:focus { outline: none; border-color: var(--navy-light); }

.login-container button {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 13px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.login-container button:hover { background: var(--navy-mid); }

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

.info {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 24px;
}

.info h1 { font-weight: 900; font-size: 36px; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.5px; }
.info h2 { font-weight: 900; font-size: 30px; color: var(--navy); margin-bottom: 20px; }
.info p { color: var(--text-muted); margin-bottom: 8px; }

.cards { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.cards .card {
    background: var(--bg-white);
    border: 1.5px solid #dde3f0;
    border-radius: var(--radius);
    padding: 16px 28px;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    transition: border-color 0.2s, transform 0.2s;
}

.cards .card:hover { border-color: var(--navy-light); transform: translateY(-2px); }

/* ===========================
   KONTAKT PAGE
   =========================== */

.kontakt-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }

@media (max-width: 768px) {
    .kontakt-grid { grid-template-columns: 1fr; }
    .kontakt-map { height: 300px; }
}

.kontakt-info { display: flex; flex-direction: column; gap: 20px; }

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1.5px solid #dde3f0;
}

.kontakt-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.kontakt-item strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.kontakt-item p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.kontakt-item a { color: var(--navy-light); font-weight: 600; }
.kontakt-item a:hover { text-decoration: underline; }

.kontakt-map {
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid #dde3f0;
}

.kontakt-map iframe { width: 100%; height: 100%; display: block; }

/* Modal Zmiany Hasła */
.pw-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 35, 71, 0.85);
    z-index: 10000; display: none; align-items: center; justify-content: center;
}
.pw-modal-content {
    background: white; padding: 30px; border-radius: var(--radius);
    max-width: 400px; width: 90%; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.pw-modal-content h2 { color: var(--navy); margin-bottom: 10px; }
.pw-modal-content p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pw-input { 
    width: 100%; padding: 12px; margin-bottom: 10px; 
    border: 1.5px solid #dde3f0; border-radius: var(--radius-sm); 
}
.pw-btn-save { 
    width: 100%; padding: 14px; background: var(--accent);
    color: white; border: none; border-radius: var(--radius-sm); 
    font-weight: 700; cursor: pointer; margin-bottom: 10px;
}
.pw-btn-later { 
    background: none; border: none; color: var(--text-muted); 
    font-size: 13px; text-decoration: underline; cursor: pointer; 
}

/* ===========================
   PANEL ADMINA (ZINTEGROWANY)
   =========================== */
.admin-dashboard {
    display: flex;
    max-width: 100%;
    margin: 30px auto;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    min-height: 80vh;
    overflow: hidden;
    border: 1.5px solid #dde3f0;
}

.admin-sidebar {
    width: 280px;
    background: var(--navy);
    color: white;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

.admin-sidebar h3 {
    padding: 0 24px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-menu { list-style: none; }
.admin-menu li {
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    border-left: 4px solid transparent;
    transition: 0.2s;
}
.admin-menu li:hover { background: rgba(255,255,255,0.05); }
.admin-menu li.active {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--accent);
}

.admin-content-area {
    flex: 1;
    padding: 40px;
    background: #fcfcfd;
    overflow-y: auto;
}

.admin-tab { display: none; }
.admin-tab.active { display: block; }

/* Moduł Grafiku */
.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    border: 1.5px solid #dde3f0;
    margin-bottom: 24px;
}

.date-controls { display: flex; align-items: center; gap: 16px; font-weight: 800; font-size: 18px; color: var(--navy); }
.date-controls button {
    background: var(--bg-light); border: 1px solid #dde3f0; padding: 8px 16px; 
    border-radius: 8px; cursor: pointer; font-weight: bold; color: var(--navy); transition: 0.2s;
}
.date-controls button:hover { background: #e0e6f5; }

.schedule-grid { display: flex; flex-direction: column; gap: 10px; }
.time-slot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
    cursor: pointer; transition: 0.2s; font-weight: 600; background: white;
}
.time-slot:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.time-slot.unavailable { border-color: #dde3f0; color: #999; }
.time-slot.available { background: #e8f5e9; border-color: #c8e6c9; color: #2e7d32; }
.time-slot.booked { background: #fff3e0; border-color: #ffe0b2; color: #e65100; }

.slot-action { font-size: 12px; padding: 4px 12px; border-radius: 20px; font-weight: 800; background: rgba(0,0,0,0.05); }

/* Modale (Okienka pop-up) */
.admin-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 1000;
    display: none; align-items: center; justify-content: center;
}
.admin-modal-content {
    background: white; padding: 30px; border-radius: var(--radius); width: 100%; max-width: 450px;
}
.admin-modal-content h3 { color: var(--navy); margin-bottom: 15px; }
.admin-modal-content select { width: 100%; padding: 12px; border: 1px solid #dde3f0; border-radius: 8px; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

.admin-modal-content .btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-modal-content .btn-primary:hover {
    background: var(--accent-dark);
}