﻿.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

    .avatar:hover {
        transform: scale(1.1);
        transition: 0.3s;
    }

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url(../assets/images/Avatar.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.name {
    font-size: 20px;
    color: orange;
    font-family: Arial;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tour-price {
    margin: 10px 0;
}

.rating-container {
    font-family: 'Arial', sans-serif;
    margin: 20px 0;
    font-size: 30px;
}

.rating-label {
    display: block;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 12px;
    color: #333;
}

.rating-list input[type="radio"] {
    display: none;
}

.rating-list li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

    .rating-list li label {
        font-size: 60px;
        color: #ccc;
        cursor: pointer;
        transition: color 0.25s ease, transform 0.25s ease;
    }

        .rating-list li label:hover,
        .rating-list li label:hover ~ label {
            color: #ffb400;
            transform: scale(1.3);
        }

.rating-list input[type="radio"]:checked ~ label {
    color: #ffb400;
    transform: scale(1.2);
}

.rating-list {
    display: inline-flex;
    flex-direction: row-reverse; 
    justify-content: flex-end; 
}

    
    .rating-list input[type="radio"]:checked ~ label,
    .rating-list input[type="radio"]:checked + label {
        color: #ffb400;
    }

   
    .rating-list li label:hover,
    .rating-list li label:hover ~ label {
        color: #ffb400;
    }