/* Popup styling */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
}

.popup-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #111111;
    padding: 50px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Set background color for select box and options */
.rating-select {
    background-color: black;
    color: white; /* Text color for the dropdown */
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    appearance: none; /* Remove default dropdown arrow */
}

/* Style the options */
.rating-select option {
    background-color: black;
    color: white;
}

/* Hover effect on dropdown options */
.rating-select option:hover {
    background-color: yellow; /* Yellow background on hover */
    color: black; /* Black text on hover */
}

/* Change the background of the select box when focused */
.rating-select:focus {
    outline: none;
    border: 1px solid yellow;
}



