@media only screen and (max-width: 800px) {

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        min-width: 180px;
        z-index: 1000;
        flex-direction: column;
        background-color: #E6E0D9;
    }

    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
        background-color: #E6E0D9;
    }

    .dropdown-menu a:last-child {
        border: none;
    }

    .dropdown-menu.active {
        display: flex;
    }
}