.rating-container {
    margin-top: 40px;
    padding: 60px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    margin: 0;
}

.rating-content {
    text-align: center;
}

.rating-container h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #E8705E;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

.button-yes {
    background-color: #E8705E;
    color: white;
}

.button-no {
    background-color: white;
    color: #E8705E;
    border: 2px solid #E8705E;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 600px) {
    .rating-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }

    button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .rating-container {
        margin-top: 40px;
    }    
}