﻿.rate-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 1000; /* Ensure this is higher than any other element on the page */
}

    .rate-popup.show {
        bottom: 0;
    }

.rate-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 1001; /* Ensure this is higher than the popup background */
}

.rating {
    font-size: 24px;
}

.star {
    cursor: pointer;
    color: gray;
    transition: color 0.2s;
}

    .star.hover,
    .star.selected {
        color: gold;
    }

button {
    margin-top: 10px;
}
