     body {
            background: #F2F2F2;
            overflow: hidden; /* Prevent scrollbar */
        }

.review-button {
    border: 1px solid #dcdcdc;
    height: 50px;
    padding: 10px;
    font-size: 13px;
    background: rgb(247 249 254);
}
        .square-container {
            width: 430px;
            background-color: #fff;
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10), 0 2px 10px 0 rgba(0, 0, 0, 0.10);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
            align-items: center;
            padding: 20px; /* Add padding for better spacing */
        }

        .centered-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            position: relative;
        }



        .rate {

            display: flex;
            justify-content: center;
            flex-direction: row-reverse;
        }

        .rate:not(:checked) > input {
            position: absolute;
            top: -9999px;
        }

        .rate:not(:checked) > label {
            float: right;
            width: 1em;
            overflow: hidden;
            white-space: nowrap;
            cursor: pointer;
            font-size: 55px;
            color: #ccc;
        }

        .rate:not(:checked) > label:before {
            content: '★ ';
        }

        .rate > input:checked ~ label {
            color: #ffc700;
        }

        .rate:not(:checked) > label:hover,
        .rate:not(:checked) > label:hover ~ label {
            color: #ffc700;
        }

        .rate > input:checked + label:hover,
        .rate > input:checked + label:hover ~ label,
        .rate > input:checked ~ label:hover,
        .rate > input:checked ~ label:hover ~ label,
        .rate > label:hover ~ input:checked ~ label {
            color: #ffc700;
        }

  

        .thank-you {
            font-size: 24px;
            font-weight: bold;
      
        }