.body-main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: aqua;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4E4E4E;
    color: white;
    padding: 0 10px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px; 
    z-index: 1000;
}


.header-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4e4e4e;
    color: white;
    padding: 0 10px;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 45px; 
    z-index: 1000;
}

.logo1 {
    width: 100px;
    margin-left: 15px;
    align-items: center;
}
.logo-axonia {
    width: 100px;
    margin-left: 15px;
    align-items: center;
}

.header-action-icon {
    display: none;
    color: #FFFFFF; 
    margin-right: 30px; 
    font-size: 24px;
    text-decoration: none;
}

@media (min-width: 768px) {
    .header-action-icon {
        display: block;
       margin-right: 30px; 
    }
}

@media (min-width: 768px) {
    .header-action-icon {
       margin-right: 20px; 
    }
}

.avatar-header {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .avatar-header {
        width: 30px;
        height: 30px;
    }
}

.logout-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 7px;
    position: relative;
}

.user-name-header {
    font-size: 12x;
    font-weight: 200;
    margin-right: 5px;
}

@media (min-width: 768px) {
    .user-name-header {
        font-size: 12px;
        font-weight: 500;
        margin-right: 60px;
    }
}

/* Sidebar styles moved to nav.css */

.main-content {
    margin-left: 50px;
    padding: 20px;
    margin-top: 50px; 
}

.main-content-mainNoNav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 65px; 
    background-color: rgb(255, 255, 255);
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.user-menu-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 7px;
    position: relative; 
}

.user-menu {
    display: none;
    position: absolute;
    top: 37px;
    right: 0;
    background-color: #444;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: hidden;
    font-size: 12px;
}

.user-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-menu li {
    padding: 12px 16px;
    border-bottom: 1px solid #555555;
}

.user-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.user-menu li a:hover {
    background-color: #555;
}

