@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 270px; /* Adjust as needed */
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.button-group button {
    margin: 0 10px; /* Space between buttons */
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif; /* Ensure font is applied here */
}

/* Styles for the openWhatsApp button */
.button-group2 button {
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    background-color: #25D366; /* Green background color */
    color: white;
    border: none;
    border-radius: 5px;
}

.button-group2 button:hover {
    background-color: #128C7E; /* Darker green hover color */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
}

button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    font-size: 16px;
}

.rating-section {
    margin-top: 20px;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
}

.star.selected {
    color: gold;
}

textarea#userOpinion {
    width: 100%;
    max-width: 400px;
    height: 80px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    font-family: 'Cairo', sans-serif;
    text-align: center; /* Center-align the text */
}
