
body {
    background-color: #f8f9fa;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    background: #ffffff;
    border-right: 1px solid #e0e0e0;
}

.sidebar a {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.sidebar a:hover {
    background: #e7f1ff;
    color: #0d6efd;
}

/* Main */
.main-content {
    width: 100%;
    margin-left: 250px;
    min-height: 100vh;
}

.top-nav {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}
 body {
     background-color: #ffffff;
 }

/* ------ TOP CARDS ------ */
.custom-grey-card {
    background: #f7f7f7;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}


.card-title {
    color: #555;
    font-weight: 600;
}

.card-text {
    color: #333;
    font-size: 26px;
    font-weight: bold;
}

/* ------ FLEX AREA FOR TABLES ------ */
.flex-container {
    display: flex;
    gap: 25px;
    padding: 0 10px;
}

/* Each table section */
.table-box {
    flex: 1;
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.table-box h4 {
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

/* ------ TABLE DESIGN ------ */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

thead th {
    background: #eeeeee;
    padding: 10px;
    color: #555;
    font-weight: 600;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
}

tbody tr {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
}

tbody td {
    padding: 12px;
    font-size: 14px;
    color: #333;
}

tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

