.user-rating-widget {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    gap: 1rem;
	background: #f6f6f8 !important;
}

.user-rating-widget #ratingpercentage{
	font-weight: bold !important;
	color: #198754!important ;
}
.emoji-rating {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}
.error-message {
    color: #dc3545; /* Bootstrap's danger color */
    margin-top: 10px;
}

.emoji {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

.static-emoji {
    width: 40px !important;
    height: 40px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.static-emoji:hover {
    transform: scale(1.5);
}

.votes-count {
    color: #555;
    margin: 0;
    font-size: 1rem;
    min-width: 100px;
    text-align: left;
	font-weight: bold !important;
}




#user-rating-text {
    font-size: 1.2rem; /* Slightly larger text for emphasis */
    margin-bottom: 1rem;
    color: #333; /* Darker text for better readability */
}

.emoji-rating {
    display: flex;
    justify-content: center;
    gap: 20px; /* Increased gap for better spacing */
    margin-bottom: 1rem;
}

.emoji {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

.static-emoji {
    width: 60px; /* Slightly larger emojis */
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Animation */
.static-emoji:hover {
    transform: scale(1.5); /* Slightly smaller scale for a subtle effect */
}

.votes-count {
    color: #555; /* Softer color for the vote count */
}

.rating-instruction, .refresh-info {
    color: #888; /* Lighter color for less emphasis */
}

.bounce2 {
    animation: bounce2 0.9s ease; /* Bounce effect duration and easing */
    transform: scale(1.5); /* Final scale effect */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1.5); } /* Maintain scale throughout */
    40% { transform: translateY(-20px) scale(1.5); }
	
	
  
@media (max-width: 600px) {
    .user-rating-widget {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }

    .static-emoji {
        width: 30px !important; /* Smaller emojis on mobile */
        height: 30px !important;
    }
}