body {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    display: flex;
}
.dashboard-container {
    display: flex;
    width: 100%;
}
.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    height: 100vh; /* Make sidebar full height */
    padding: 20px 0;
    width: 250px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    height: 100vh;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.logo img {
    height: 150px;
    display: block;
}

@keyframes shake {
    0% { transform: rotate(0); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
    100% { transform: rotate(0); }
}

.notification-icon {
    margin-top: 9px;
    color: black;
    font-size: 20px; /* Adjust size if needed */
    animation: shake 0.5s ease-in-out infinite alternate;
}

.profile-btn, .notification-icon {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.profile-btn svg, .notification-icon svg {
    width: 35px;
    height: 35px;
    fill: black; /* Icon color */
}

.profile-btn:hover, .notification-icon:hover {
    transform: scale(1.1);
}

/* Optional: Add a soft shadow effect */
.profile-btn:focus, .notification-icon:focus {
    outline: none;
}

h1 {
    font-family: 'Poppins'; /* Change to your preferred font */
    font-size: 28px; /* Adjust size if needed */
    font-weight: 700; /* Make it bold */
    color: #333; /* Dark color for readability */
}


.menu {
    list-style: none;
    padding: 0;
    margin-top: 1px; /* Space below logo */
    width: 90%;
}
.menu li {
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.menu .active, .menu li:hover {
    background: #1abc9c;
    color: white;
    transform: scale(1.03);
}
.dashboard-content {
    flex: 1;
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icons {
    display: flex;
    gap: 15px;
}
.review-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.stat-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: all 0.3s ease-in-out;
}

.star-box:hover {
    background: #1abc9c;
    transform: scale(1.02);
}

.recent-reviews {
    margin-top: 30px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.review-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.review-card:hover {
    background: #1abc9c;
    transform: scale(1.02);
}