/* Positioning and style */
.custom-dropdown {
    position: relative;
}

.custom-dropdown > a {
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
    color: #333;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 250px;
    z-index: 999;
}

.custom-dropdown:hover .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-menu li {
    list-style: none;
    padding: 12px 0;
}

.custom-dropdown-menu li a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.custom-dropdown-menu li a:hover {
    background-color: #f6f6f6;
}

/* Arrows */
.arrow-down {
    font-size: 12px;
    margin-left: 6px;
}

.arrow-right {
    font-size: 14px;
    opacity: 0.4;
}
