* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
}
.dashboard-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.sidebar {
    width: 280px;
    background-color: #00615a;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.logo img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}
.logo-text {
    font-size: 18px;
    font-weight: 600;
}
.nav-menu {
    list-style-type: none;
}
.nav-item {
    margin-bottom: 10px;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #ebeef3;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.nav-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.main-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.greeting {
    font-size: 24px;
    font-weight: 600;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00615a;
    margin-right: 10px;
}
.user-name {
    font-weight: 600;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.stat-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

.stat-title {
    font-size: 16px;
    color: var(--text-light);
}




.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}




.header {
    background-color: #fdcf6e;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.greeting-text {
    font-size: 16px;
    color: var(--text-light);
}

.user-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}

.user-profile {
    display: flex;
    align-items: center;
}

.profile-image {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 16px;
}

.profile-info {
    color: var(--text-color);
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.profile-menu-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.profile-email {
    font-size: 14px;
    color: var(--text-light);
}
:root {
    --primary-color: #00615a; /* Dark Green */
    --secondary-color: #fdcf6e; /* Yellow */
    --text-color: #313a49; /* Dark Gray */
    --text-light: #607797; /* Light Gray */
    --bg-light: #f5f5f5; /* Light Background */
    --white: #ffffff; /* White */
    --border-color: #adbacC; /* Border Color */
}

.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat-card {
    background-color: var(--bg-light); /* Light background for the card */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
    text-decoration: none; /* Remove underline from links */
    color: rgb(12, 8, 8)/* Ensure text color inherits from parent */
}

.stat-card:hover {
    
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #497a72; /* Darker green background on hover */
}

.stat-card:hover .stat-icon {
    background-color: var(--secondary-color); /* Yellow background for icon */
    color: var(--primary-color); /* Green color for icon */
    /* Make the icon background circular */
    border-radius: 6px;
    background-color: #fdcf6e;
  /* Add some padding around the icon */
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(17, 16, 16) !important/* Default text color */
}

.stat-title {
    margin: 10px 0 0;
    color: rgb(3, 3, 3) !important/* Default title color */
}

.full-width {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.bottom-menu {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-menu .nav-menu {
    padding: 0;
    list-style-type: none;
}

.bottom-menu .nav-item {
    margin-bottom: 10px;
}

.bottom-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bottom-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bottom-menu .nav-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.bottom-menu .nav-link:last-child {
    margin-bottom: 0;
}

