/* styles.css */

.custom-header {
    background-color: #F8D7B7;
    color: #333;
}

.menu-bar {
    background-color: #F29A3C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.menu-group {
    display: flex;
}

.menu-group .w3-bar-item {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
}

.menu-group .w3-bar-item:hover {
    background-color: #E07724;
}

.menu-bar .highlight {
    background-color: red;
}
