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

body {
    font-family: Arial, sans-serif;
    background-color: #f8fdfc;
    display: flex;
}

.sidebar {
    width: 250px;
    background-color: #00C0B4;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 2em;
}

.sidebar .logo {
    margin-bottom: 30px;
    margin-left: 2em;
}

.sidebar .logo img {
    max-width: 150px;
}

.sidebar nav ul {
    list-style-type: none;
    width: 100%;
}

.sidebar nav ul li {
    margin-bottom: 15px;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-left: 2em;
}

.sidebar-selected {
    background-color: #00A69C;
    padding: 0.5em 0;
}

.navbar-account {
    width: auto;
    display: inline;
    margin-bottom: 20px;
    padding-left: 0;
    border-bottom: 1px solid #E1E2EC ;
}

.nav-account ul {
  list-style-type: none;
  float: right;
}

.nav-account li {
    display: inline;
}

.headings {
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: 0;
    border-bottom: 1px solid #E1E2EC ;
}

.content {
    flex: 1;
    padding: 20px;
    overflow: auto;
    clear: both;
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 20px !important;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E1E2EC;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 15px;
    border: 1px solid #DEE1E1;
    border-radius: 8px;
    text-align: center;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.stat-card h2 {
    font-size: 28px;
    color: #00b3b3;
}

.tables-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.table-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border: 1px solid #DEE1E1;
    padding: 15px;
    border-radius: 8px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.table-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

table th, table td {
    text-align: left;
    padding: 10px;
    /*border: 1px solid #ddd;*/
}

table th {
    background-color: #F2F5F5;
    color: #666D6D;
}

.round-border-left {
    border-radius: 5px 0 0 5px;
}

.round-border-right {
    border-radius: 0 5px 5px 0;
}

table td {
    background-color: #fff;
}

thead {
}

.table-card .view-all {
    text-align: right;
    margin-top: 10px;
}

.table-card .view-all a {
    text-decoration: none;
    color: #00b3b3;
}

.pending {
    background-color: #FEF8E7;
    color: #E2C67A;
    padding: 0.5em;
    border-radius: 10px;
}

.view-all h2 {
    float: left;
}

.view-all a {
    float: right;
    font-size: 14px;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .tables-container {
        flex-direction: column;
    }
}