﻿/* Desktop styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 60px;
}

.dashboard-icon-container {
    width: 50px;
    height: 50px;
    background-color: #0f5c57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-icon {
    font-size: 30px;
    color: #58e0db;
}

.module-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    font-size: 20px;
}

.right-section {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 10px;
    }

    .header-top-row {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .header-bottom-row {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .left-section {
        display: none; /* Hide the desktop left section */
    }

    .right-section {
        display: none; /* Hide the desktop right section */
    }

    .logo {
        height: 40px; /* Smaller logo for mobile */
    }

    .profile-img {
        width: 40px;
        height: 40px;
    }

    .module-title {
        font-size: 14px; /* Slightly smaller text */
    }
}
