.rating-icons {
    display: flex;
    justify-content: space-between;
    /* width: 200px; */
    margin: 15px 0;
}
.rating-icons img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 5px;
}
.rating-icons img.active {
    border: 2px solid #007bff;
    border-radius: 50%;
}

.rating-icons img.selected {
    border: 3px solid #007bff;
    border-radius: 50%;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.language-switcher img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    padding: 5px;
}
.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 5px;
}
.custom-image-container {
    max-width: 100%;
    overflow: hidden;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px; /* Adjust spacing as needed */
}

.language-switcher img {
    margin: 0 5px; /* Space between flags */
    cursor: pointer;
    width: 30px; /* Adjust size as needed */
    height: auto;
}

/* Additional styles for active language selection (optional) */
.language-switcher img.active {
    border: 2px solid #000; /* Highlight selected flag with border */
    border-radius: 50%; /* Optional: make the border rounded */
}


.rating-icons {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    margin-top: 15px; /* Adjust spacing as needed */
}

