* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f6fb;
    color: #071d3a;
}

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

/* TOPBAR */
.topbar {
    height: 72px;
    background: linear-gradient(90deg, #062b63, #004b9b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    font-size: 24px;
    opacity: 0.9;
}

.logo-box {
    width: 44px;
    height: 44px;
    background: white;
    color: #0066df;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
}

.app-title {
    font-size: 22px;
    font-weight: 800;
}

.app-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-icon {
    font-size: 22px;
}

.user-badge {
    width: 38px;
    height: 38px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.user-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.user-text span {
    opacity: 0.8;
}

.logout-link {
    font-weight: 700;
    color: #fff;
}

/* LAYOUT */
.layout {
    display: flex;
    min-height: calc(100vh - 72px);
}

.sidebar {
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #e0e7f1;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 7px;
    color: #082b5f;
    font-weight: 700;
}

.sidebar nav a span {
    width: 24px;
    text-align: center;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: #eaf3ff;
    color: #0066df;
}

.sidebar-footer {
    font-size: 12px;
    color: #29476d;
    padding: 10px;
}

.sidebar-footer span,
.sidebar-footer em {
    display: block;
    margin-top: 6px;
}

.sidebar-footer em {
    background: #eaf3ff;
    color: #0066df;
    padding: 5px 9px;
    border-radius: 8px;
    width: fit-content;
}

.content {
    flex: 1;
    overflow: hidden;
}

/* HERO */
.hero {
    position: relative;
    min-height: 320px;
    padding: 54px 58px;
    overflow: hidden;
    background: linear-gradient(120deg, #eef6ff, #dcecff);
    border-bottom: 1px solid #dfe7f2;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 560px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: 36px;
    color: #062b63;
}

.hero p {
    margin: 0 0 24px;
    font-size: 17px;
    color: #24476f;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    display: inline-block;
    background: #0066df;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0,102,223,0.25);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #062b63;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    border: 1px solid #d8e1ec;
}

/* HERO SLIDER */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(243,246,251,0.98) 0%,
        rgba(243,246,251,0.94) 28%,
        rgba(243,246,251,0.60) 48%,
        rgba(243,246,251,0.15) 70%,
        rgba(243,246,251,0.00) 100%
    );
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFade 18s infinite;
    transform: scale(1.02);
}

.hero-slider .slide-1 {
    animation-delay: 0s;
}

.hero-slider .slide-2 {
    animation-delay: 6s;
}

.hero-slider .slide-3 {
    animation-delay: 12s;
}

@keyframes heroFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    28%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 58%;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.75);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.slider-dots span.active {
    width: 26px;
    border-radius: 20px;
    background: #0066df;
}

/* DASHBOARD */
.dashboard-wrap {
    padding: 0 24px 28px;
    margin-top: -38px;
    position: relative;
    z-index: 5;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.kpi-card {
    background: white;
    border: 1px solid #dfe7f2;
    border-radius: 16px;
    padding: 22px;
    min-height: 148px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 15px;
    box-shadow: 0 8px 24px rgba(9,42,88,0.08);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.kpi-blue .kpi-icon { background: #0073ff; }
.kpi-orange .kpi-icon { background: #ff8500; }
.kpi-red .kpi-icon { background: #e51d3f; }
.kpi-green .kpi-icon { background: #10a34a; }

.kpi-label {
    font-size: 15px;
    font-weight: 800;
}

.kpi-number {
    font-size: 36px;
    font-weight: 900;
    margin: 7px 0;
}

.kpi-small {
    font-size: 13px;
    font-weight: 700;
}

.kpi-blue .kpi-small,
.kpi-green .kpi-small {
    color: #0a8f3f;
}

.kpi-orange .kpi-small,
.kpi-red .kpi-small {
    color: #d71920;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.panel {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(9,42,88,0.06);
}

.panel-header {
    padding: 17px 20px;
    border-bottom: 1px solid #e8eef6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #062b63;
    font-size: 18px;
    font-weight: 900;
}

.panel-header a {
    color: #0066df;
    font-size: 13px;
    font-weight: 800;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f7;
    text-align: left;
    font-size: 14px;
}

th {
    background: #f7faff;
    color: #24476f;
    font-weight: 800;
}

.badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.badge-blue { background: #dcebff; color: #0066df; }
.badge-orange { background: #fff0dc; color: #d46600; }
.badge-green { background: #def8e8; color: #14833d; }
.badge-red { background: #ffe2e7; color: #d71920; }

/* LOGIN */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(0,102,223,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0,75,155,0.10), transparent 30%),
        #f3f6fb;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 32px;
    width: 380px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(9,42,88,0.12);
    border: 1px solid #e3eaf4;
}

.login-box h1 {
    margin: 0 0 6px;
    text-align: center;
    color: #062b63;
}

.login-subtitle {
    text-align: center;
    color: #55708d;
    margin-bottom: 24px;
}

.login-box input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #d7e0ea;
    border-radius: 10px;
    font-size: 14px;
}

.login-box input:focus {
    outline: none;
    border-color: #0066df;
    box-shadow: 0 0 0 3px rgba(0,102,223,0.10);
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #0066df;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

.login-box button:hover {
    background: #0054b8;
}

.error {
    background: #ffe5e8;
    color: #b4001b;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
    .kpi-grid,
    .panel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        max-width: 460px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 260px;
        padding: 36px 24px;
    }

    .slider-dots {
        left: 50%;
    }
}

@media (max-width: 780px) {
    .topbar {
        height: auto;
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .hero {
        min-height: 220px;
        padding: 28px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-wrap {
        margin-top: 0;
        padding: 20px;
    }

    .kpi-grid,
    .panel-grid {
        grid-template-columns: 1fr;
    }

    .slider-dots {
        left: 20px;
        bottom: 12px;
    }
}

/* =========================
   LOGIN PAGE - PLAYMAKER ERP
   ========================= */

.login-page {
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #081a33;
}

.login-bg-slider {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.login-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: loginFade 18s infinite;
    transform: scale(1.03);
}

.login-bg-slider .slide-1 { animation-delay: 0s; }
.login-bg-slider .slide-2 { animation-delay: 6s; }
.login-bg-slider .slide-3 { animation-delay: 12s; }

@keyframes loginFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    28%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

.login-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 22, 48, 0.88) 0%,
            rgba(5, 22, 48, 0.72) 38%,
            rgba(5, 22, 48, 0.40) 62%,
            rgba(5, 22, 48, 0.55) 100%);
    z-index: 2;
}

.login-layout {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 520px;
    align-items: center;
    gap: 30px;
    padding: 40px 48px;
}

.login-side-copy {
    color: white;
    max-width: 760px;
    padding-right: 30px;
}

.login-brand-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.login-brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    color: #0066df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}

.login-brand-title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
}

.login-brand-subtitle {
    margin-top: 6px;
    font-size: 16px;
    color: rgba(255,255,255,0.88);
}

.login-copy-box {
    max-width: 680px;
}

.login-copy-box h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.login-copy-box p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 640px;
}

.login-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
    max-width: 560px;
}

.login-feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
}

.login-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7fd0ff;
    font-weight: 900;
}

.login-form-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 430px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.login-box-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.login-box-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0066df, #0d8bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,102,223,0.30);
}

.login-box h2 {
    margin: 0;
    font-size: 28px;
    color: #062b63;
}

.login-subtitle {
    margin-top: 4px;
    color: #5a6f88;
    font-size: 14px;
}

.login-label {
    display: block;
    margin-bottom: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #17324d;
}

.login-box input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9e3ee;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 8px;
    background: #fff;
    transition: 0.2s ease;
}

.login-box input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.login-box button {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #0066df, #0d8bff);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,102,223,0.28);
}

.login-box button:hover {
    filter: brightness(1.03);
}

.login-footer-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #6b7f96;
}

.error {
    background: #ffe5e8;
    color: #b4001b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    border: 1px solid #ffd0d8;
}

/* mobile / tablet */
@media (max-width: 1200px) {
    .login-layout {
        grid-template-columns: 1fr 460px;
        padding: 32px;
    }

    .login-copy-box h1 {
        font-size: 40px;
    }
}

@media (max-width: 980px) {
    .login-layout {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .login-side-copy {
        max-width: 100%;
        padding-right: 0;
    }

    .login-brand-wrap {
        margin-bottom: 24px;
    }

    .login-copy-box h1 {
        font-size: 34px;
    }

    .login-copy-box p {
        font-size: 16px;
    }

    .login-form-area {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .login-layout {
        padding: 16px;
        align-items: start;
    }

    .login-brand-title {
        font-size: 26px;
    }

    .login-brand-subtitle {
        font-size: 14px;
    }

    .login-copy-box h1 {
        font-size: 28px;
    }

    .login-copy-box p {
        font-size: 15px;
    }

    .login-box {
        padding: 22px;
        border-radius: 18px;
    }

    .login-box h2 {
        font-size: 24px;
    }
}

/* =========================
   LOGIN PAGE - SIMPLE HERO
   ========================= */

.login-page {
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #081a33;
}

.login-bg-slider {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.login-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: loginFade 18s infinite;
    transform: scale(1.03);
}

.login-bg-slider .slide-1 { animation-delay: 0s; }
.login-bg-slider .slide-2 { animation-delay: 6s; }
.login-bg-slider .slide-3 { animation-delay: 12s; }

@keyframes loginFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    28%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

.login-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(5, 22, 48, 0.68) 0%,
            rgba(5, 22, 48, 0.45) 45%,
            rgba(5, 22, 48, 0.60) 100%
        );
    z-index: 2;
}

.login-layout {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.login-layout-simple {
    align-items: center;
    justify-content: center;
}

.login-form-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-area-centered {
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 430px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.login-box-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.login-box-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0066df, #0d8bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,102,223,0.30);
}

.login-box h2 {
    margin: 0;
    font-size: 28px;
    color: #062b63;
}

.login-subtitle {
    margin-top: 4px;
    color: #5a6f88;
    font-size: 14px;
}

.login-label {
    display: block;
    margin-bottom: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #17324d;
}

.login-box input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9e3ee;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 8px;
    background: #fff;
    transition: 0.2s ease;
}

.login-box input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.login-box button {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #0066df, #0d8bff);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,102,223,0.28);
}

.login-box button:hover {
    filter: brightness(1.03);
}

.login-footer-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #6b7f96;
}

.error {
    background: #ffe5e8;
    color: #b4001b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    border: 1px solid #ffd0d8;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .login-layout,
    .login-layout-simple {
        min-height: 100vh;
        align-items: flex-start;
        justify-content: center;
        padding: 24px 14px;
        padding-top: 36px;
    }

    .login-form-area,
    .login-form-area-centered {
        align-items: flex-start;
        justify-content: center;
    }

    .login-box {
        max-width: 100%;
        padding: 22px;
        border-radius: 18px;
    }

    .login-box h2 {
        font-size: 24px;
    }
}

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

.sidebar-collapsible {
    width: 78px;
    transition: width 0.25s ease;
    overflow: hidden;
}

.sidebar-collapsible:hover {
    width: 260px;
}

.sidebar-collapsible .sidebar-menu {
    padding-top: 14px;
}

.sidebar-collapsible .sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    overflow: hidden;
    min-height: 52px;
    padding: 14px 20px;
}

.sidebar-collapsible .menu-icon {
    min-width: 24px;
    width: 24px;
    text-align: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sidebar-collapsible .menu-text {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.sidebar-collapsible:hover .menu-text {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sidebar-collapsible .sidebar-footer {
    opacity: 0;
    transition: opacity 0.18s ease;
    white-space: nowrap;
}

.sidebar-collapsible:hover .sidebar-footer {
    opacity: 1;
}

.sidebar-footer-title {
    font-weight: 800;
    color: #17324d;
}

.sidebar-footer-sub {
    margin-top: 4px;
    color: #5b728b;
    font-size: 13px;
}

/* при collapse центрираме иконките */
.sidebar-collapsible:not(:hover) .sidebar-menu a {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-collapsible:not(:hover) .menu-icon {
    margin: 0 auto;
}

/* footer да не пречи когато менюто е прибрано */
.sidebar-collapsible:not(:hover) .sidebar-footer {
    display: none;
}
/* =========================
   FORMS / BUTTONS
   ========================= */

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d6e0ea;
    border-radius: 12px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
    color: #17324d;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}

.btn-light {
    background: #eef3f9;
    color: #17324d;
    border: 1px solid #d6e0ea;
}

.btn-light:hover {
    background: #e6edf5;
}
