body {
    margin: 0;
    color: #3c4141;
    background-color: #f0f8ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
}

.dashb {
    width: 240px;
    background: #1e293b;
    padding: 20px;
    height: 100vh;
    color: aliceblue;
    position: sticky;
    top: 0;
}

.dashb h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
}

.point a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 10px 0;
    font-size: 16px;
    transition: 0.3s;
}

.point a:hover {
    color: #fff;
    padding-left: 5px;
}

.main-content {
    flex: 1;
    padding: 20px;
}

.head {
    padding: 20px 0;
    margin-bottom: 40px;
}

.user-profile-area {
    position: absolute;
    top: 20px;
    right: 20px;
}

.avatar-wrapper img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.status-indicator {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border: 2px solid #fff;
    border-radius: 50%;
}

.dropdown-content {
    display: none; 
    position: absolute;
    right: 0;
    top: 55px;
    background-color: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 100;
}

.dropdown-content.show {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    
}

.card { 
    background: #334155;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: white;
    transition:0.3s;
}