/* Container for the horoscope dropdown */
.sign-links-dropdown-container {
    position: relative;
    width: 100%;
    max-width: 390px;
    font-family: Jost, sans-serif;
    font-size: 18px;
}

.sign-links-dropdown {
    cursor: pointer;
    padding: 5px 10px;
    margin: 5px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.sign-links-dropdown span {
    margin-right: 5px;
}

.dropdown-arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #333 transparent transparent transparent;
}

/* Dropdown list styles */
.sign-links-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0;
    margin: 2px 0 0 0;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    list-style-type: none;
    max-height: 300px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.sign-links-dropdown-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #333;
    cursor: pointer; /* Cursor de mano al hacer hover */
}

.sign-links-dropdown-list li:hover {
    background-color: #f0f0f0;
}

.sign-links-dropdown-list li img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}
