/* Dashboard Layout */
section.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 0 0;
}
.head {
    background-color: #000;
    height: 120px;
}
.dashboard {
        min-height: 100vh;
    }
    .sidebar {
        background: linear-gradient(180deg, #007bff, #0056b3);
        color: white;
        padding: 20px;
    }
    .sidebar .nav-link {
        color: white;
        padding: 10px 15px;
        border-radius: 4px;
        margin-bottom: 5px;
    }
    .sidebar .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
    }
    .profile-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
        border: 3px solid white;
    }
    @media (max-width: 768px) {
        .sidebar {
            flex-direction: row;
            align-items: center;
            text-align: center;
        }
        .sidebar .nav {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }
        .sidebar .nav-link {
            margin: 5px;
        }
    }