body {
    background: #f5f7fb;
    font-family: 'lato', sans-serif;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Login Page Enhancements */
.card {
    border: none;
}



/* Layout */
.app-container {
    display: flex;
}

.container, .container-fluid, .app-container {
    flex: 1;
}

/* Footer */
.footer {
    background: transparent;
    border-top: 1px solid #e5e7eb;
}

/* Maroon Navbar */
.custom-navbar {
    background-color: #6d0404; /* maroon */
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Optional hover polish */
.custom-navbar .btn-light {
    border-radius: 20px;
}

/* Sidebar 
.sidebar {
    width: 260px;
    height: 100vh;
    background: #111827;
    color: #fff;
    padding: 15px;
    position: fixed;
}*/

.sidebar {
    position: fixed;
    left: 0;
    width: 265px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background: #111827;
    color: #fff;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar h5 {
    color: #9ca3af;
}

.sidebar a {
    display: block;
    color: #d1d5db;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-decoration: none;
}

.sidebar a:hover {
    background: #1f2937;
    color: #fff;
}

/* Main */
.main-content {
    margin-left: 250px;
    padding: 25px;
    width: 100%;
}

/* Cards */
.custom-card {
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.custom-card.success {
    border-left: 5px solid #22c55e;
}

.custom-card.primary {
    border-left: 5px solid #0022ff;
}

.custom-card.danger {
    border-left: 5px solid #ff0000;
}

.custom-card.revenue3 {
    border-left: 5px solid #e69d00;
    border-right: 5px solid #e69d00;
}

.custom-card.revenue2 {
    border-left: 5px solid #7f10ff;
    border-right: 5px solid #7f10ff;
}

.custom-card.revenue1 {
    border-left: 5px solid #00f0c8;
    border-right: 5px solid #00f0c8;
}

.custom-card.revenue4 {
    border-left: 5px solid #7f10ff;
}

.custom-card.revenue5 {
    border-left: 5px solid #00f0c8;
}

.custom-card.revenue6 {
    border-left: 5px solid #ff54b8;
}

/* Table */
.table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table tr {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Mobile */
@media(max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }
}