* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

.container {
    display: flex;
    min-height: 100vh;
    min-width: 100%;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #ff5c75;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile {
    text-align: center;
}

.avatar {
    width: 80px;
    height: 80px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.profile h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.profile p {
    font-size: 14px;
    color: #ddd;
}

.menu ul {
    list-style: none;
    margin-top: 20px;
}

.menu li {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
}
.menu li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.menu li.active {
    background-color: #007bff;
    color: #333;
}

.menu li:hover {
    background-color: #ff7589;
}

.logout {
    background-color: #6c757d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.logout:hover {
    background-color: #5a6268;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

.main-content h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.main-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.summary {
    display: flex;
    flex-wrap: wrap; /* Optional: prevents overflow on smaller screens */
    gap: 20px;
    justify-content: space-between; /* Even spacing between the 3 cards */
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(33.33% - 20px); /* Three cards per row with spacing */
    box-sizing: border-box;
}


.card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.number {
    font-size: 36px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.number.green {
    background-color: #28a745;
    color: #fff;
}

.number.blue {
    background-color: #007bff;
    color: #fff;
}

.number.yellow {
    background-color: #ffc107;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
}