/* Modern Star Rating Styles */
.rate {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 0px 0px;
    gap: 0px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.rate__star {
    width: auto;
    padding: 3px;
    text-align: center;
    font-size: 23px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    min-height: 14px;
    transform: scale(1);
}

.rate__star:hover {
    color: #A3D7C9;
    transform: scale(1.1);
    background-color: rgba(163, 215, 201, 0.1);
}

.rate__star.active {
    color: #A3D7C9 !important;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(163, 215, 201, 0.3);
}

:target.rate__star ~ a, :target.rate__star {
    color: #A3D7C9;
}

.fa-star:before {
    content: "★";
    font-style: normal !important;
}
