/* Style for the dropdown button */
.dropbtn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container for the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Hidden dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 1;
}

/* Style for the links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 5px 16px;
    /* Reduced top padding */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align */
}

/* Show the dropdown content when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for the images inside the dropdown */
.dropdown-content img {
    width: 170px;
    /* Adjust as needed */
    height: auto;
}

/* Style for the menu icon */
.menu-icon {
    width: 170px;
    height: auto;
}

/* Style for the small text label under the menu icon and images */
.button-text {
    font-size: 10px;
    /* Adjust the font size as needed */
    color: white;
    /* Adjust the text color as needed */
    margin-top: 2px;
    /* Reduced margin */
    text-align: center;
    /* Center align text */
}

/* Change the background of the dropdown button when hovering */
.dropdown:hover .dropbtn {
    background-color: #007bff;
}

.dropdown-content a[href*="sondicamusic.com"]:hover {
    background-color: #F0773A;
}

.dropdown-content a[href*="dansicomusic.com"]:hover {
    background-color: #5AAE57;
}