.dashboard-card {
    border-radius: 16px;
    transition: all 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
}

.dashboard-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    font-size: 22px;
}

.dashboard-card h2 {
    font-size: 28px;
}

/* ==============================
   NAVBAR PROFILE
================================ */

.profile-user {
    color: #ffffff !important;
    padding: 5px 8px;
    border-radius: 6px;
}

.profile-user:hover {
    background: rgba(255,255,255,0.08);
}

.navbar-profile-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: 8px;
}

.navbar-profile-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #343a40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 18px;
}

.navbar-profile-name {
    color: #ffffff !important;
    font-weight: 500;
    white-space: nowrap;
}

/* ==============================
   LOGOUT BUTTON
================================ */

.navbar-logout-btn {
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.navbar-logout-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #ffffff !important;
}

