body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
}

.feedback-container, .thankyou-container {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    color: white;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.feedback-container {
    display: block;
}

.thankyou-container {
    display: none; 
    text-align: center; 
}
.star-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4a4a4a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-bottom: 20px; 
}

.thankyou-icon {
    margin-bottom: 20px;
}

.star-icon img{
    width: 25px;
    height: auto;
}

.content-wrapper {
    text-align: left;
}

h2 {
    font-size: 24px;
    margin: 15px 0;
    font-weight: bold;
}

p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 10px 0 20px 0;
    line-height: 1.5;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-btn {
    background-color: #4a4a4a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rating-btn:hover, .rating-btn.selected {
    background-color: hsl(25, 97%, 53%);
    color: white;
}

.submit-btn {
    background-color: hsl(25, 97%, 53%);
    color: black;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    height: 50px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #e0e0e0;
    color: black;
}

.rating-result {
    background-color: #ff6200;  
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 10px 0;
    display: inline-block;
    font-size: 14px;
}