.overlay-review--modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: scroll;
}

.content-review--modal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: #fff;;
    border-radius: 10px;
    width: 100%;
    max-width: 580px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.2s ease-in-out;
}
.close {
    position: absolute;
    top: 20px;
    right: 20px;
}
.reviewTitle {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 130%;
}
.form-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.gridItem {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #23272e;
}
.input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: #23272e !important;
    background: #f0f4f8;
    outline: none;
    box-shadow: none;
}
.searchInput {
    border: none;
    outline: none;
    color: #23272e;
    background: transparent;
    font-size: 16px;
    width: 100%;
}
.textarea {
    min-height: 150px;
    max-height: 250px;
    max-width: 750px;
}
.stars {
    display: flex;
    align-items: center;
    gap: 10px;
}
.star {
    cursor: pointer;
    height: 100%;
    display: block;
    width: 100%;
}

.starEmpty {
    color: #ccc;
}
.active-star {
    color: gold !important;
}
.confirm {
    width: 100%;
}
.gridItemRating {
    display: flex;
    align-items: center;
    gap: 30px;
}
.searchExpert {
    position: relative;
}
.searchResult {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    top: 100px;
    left: 0;
    background: #23272e !important;
    color: #fff;
    border: 1px solid #b9bdc4;
    padding: 20px;
    border-radius: 8px;
    max-height: 350px;
    overflow-y: scroll;
    z-index: 100;
}
.searchResultItem {
    cursor: pointer;
}
.hidden {
    display: none;
}
.review-close {
    top: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 600px) {
    .form {
        width: 100%;
    }
}
