header {
    padding: 10px 50px;
    background-color: #05DFC2;
    color: #ffffff;
    box-shadow: 0 0 15px 7px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: -1px;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.header-container .header-logo {
    width: 120px;
}

.header-container .header-logo img {
    width: 100%;
}

.header-container .header-menu {
    display: flex;
    align-items: center;
}

.header-container .account-badge, .header-container .notifications-container, .header-container .header-avatar {
    margin-right: 20px;
}

.notifications-container {
    position: relative;
}

.notifications-container i {
    cursor: pointer;
}

.notification-label {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FFBD07;
    border: 1px solid #ffffff;
    border-radius: 50%;
    top: 0;
    right: 0;
}

.notifications-content {
    position: absolute;
    display: none;
    top: 55px;
    right: 0;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.notifications-content .notifications-title {
    text-align: center;
    font-size: 18px;
    padding: 10px;
    color: #000000;
}

.notifications-content .notifications-title .count {
    border-radius: 50%;
    background: #05DFC2;
    color: #ffffff;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.notifications-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.notifications-list li {
    border-top: 1px solid #949494;
    color: #cccccc;
    padding: 10px;
    cursor: pointer;
}

.notifications-list li:last-child {
    border-radius: 0 0 10px 10px;
}

.notifications-list li:hover {
    background-color: #F3EFEF;
}

.header-container .account-badge {
    width: 100px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: #ffffff;
    color: #05DFC2;
    text-align: center;
}

.header-container .header-avatar {
    width: auto;
    height: 50px;
}

.header-container .header-avatar img {
    border-radius: 50%;
    height: 100%;
}



@media (max-width: 500px) {
    header {
        padding: 10px 20px;
    }

    .header-container .account-badge, .header-container .notifications-container, .header-container .profile-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
    }
}
