html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    transition: color 0.2s;
}

    .navbar .nav-link:hover {
        color: #AE9479 !important;
    }

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.offcanvas .nav-link:hover {
    background-color: #4a203d;
    color: #AE9479 !important;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
}

/* ===== NAVBAR ===== */
.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    transition: color 0.2s;
}

    .navbar .nav-link:hover {
        color: #AE9479 !important;
    }

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ===== DRAWER ===== */
.offcanvas {
    background-color: #311528 !important;
    color: #fff;
}

    .offcanvas .offcanvas-header {
        border-bottom: 1px solid rgba(174, 148, 121, 0.2);
    }

    .offcanvas .offcanvas-title {
        color: #AE9479;
        font-weight: 600;
    }

    .offcanvas .nav-link {
        color: rgba(255,255,255,0.85) !important;
        font-size: 14px;
        transition: all 0.2s ease;
    }

        .offcanvas .nav-link i {
            color: #AE9479 !important;
        }

        .offcanvas .nav-link:hover {
            background-color: #4a203d;
            color: #AE9479 !important;
        }

    .offcanvas .btn-close {
        filter: invert(1);
    }

/* ===== DASHBOARD ===== */
.dashboard-header {
    background: linear-gradient(135deg, #311528, #4a203d);
    border: 1px solid rgba(174, 148, 121, 0.15);
}

.dashboard-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    .dashboard-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(49, 21, 40, 0.18);
    }

    .dashboard-card h5 {
        color: #311528;
    }

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(174, 148, 121, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #311528;
}