body {
    font-family: Montserrat, sans-serif;
}
.star-rating {
    display: flex;
    direction: rtl;
    font-size: 3rem;
}
.star-rating input {
    display: none;
}
.star-rating label {
    cursor: pointer;
    color: white;
    stroke: #555;
    stroke-width: 0.5;
    fill: white;
}
.star-rating input:checked ~ label {
    fill: gold;
    stroke-width: 0;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
    fill: gold;
    stroke-width: 0;
}
.required-field::after {
    content: ' *';
    color: red;
}
.custom-bg {
    background-color: #EFEAD7;
}
.custom-button {
    background-color: #97AF82;
    color: white;
}
.custom-button:hover {
    background-color: #88A074;
}
.overlay-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    padding-top: 6%;
}
svg.star {
    width: 3rem;
    height: 3rem;
}
textarea::placeholder {
    color: #9CA3AF;
}
.additional-ratings {
    display: none;
}
.rating-scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.rating-scale button {
    width: 2rem;
    height: 2rem;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-right: 5px;
}
.rating-scale button.red {
    background-color: #EF4444;
}
.rating-scale button.yellow {
    background-color: #fff94a;
}
.rating-scale button.orange {
    background-color: #F59E0B;
}
.rating-scale button.green {
    background-color: #10B981;
}
.rating-scale button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
.rating-scale button.selected {
    outline: 2px solid #000;
    transform: scale(1.1);
}
.error-message {
    color: red;
    font-size: 0.875rem;
}
.form-error-message {
    color: red;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}
#googleButton {
    font-size: 1.5rem;
    background-image: url('../img/google.png');
    background-size: 30px 30px; /* Adjust width and height to make the image smaller */
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center; /* Adjust the horizontal position of the image */
    height: 50%; /* Adjust size as needed */
    width: 90%; /* Adjust size as needed */
    max-width: 300px; /* Ensure the button doesn't get too wide */
    display: none; /* Use flexbox to center content */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    padding-right: 40px; /* Adjust as needed to make space for the image */
    margin: 0 auto; /* Center the button within its container */
}
