/* Puanlama Sistemi CSS */

/* Yıldız Puanlama */
.star-rating {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
}

.star-rating i {
    color: #ffc107; /* Yıldız rengi */
    font-size: 1rem;
    margin-right: 2px;
}

.star-rating i.far {
    color: #e0e0e0; /* Boş yıldız rengi */
}

.star-rating-lg i {
    font-size: 1.5rem;
    margin-right: 3px;
}

.rating-count {
    font-size: 0.85rem;
    color: #777;
    margin-left: 5px;
}

/* Puanlama Formu */
.rating-form {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.rating-form h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.rating-form .form-label {
    font-weight: 500;
}

.rating-form .form-control {
    margin-bottom: 15px;
}

.rating-form .btn-rating {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.rating-form .btn-rating:hover {
    background-color: var(--button-primary-hover-bg);
}

/* Puanlama Seçici */
.rating-selector {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.rating-selector input {
    display: none;
}

.rating-selector label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #e0e0e0;
    padding: 0 2px;
}

.rating-selector label:hover,
.rating-selector label:hover ~ label,
.rating-selector input:checked ~ label {
    color: #ffc107;
}

/* Puanlama Listesi */
.ratings-list {
    margin-top: 20px;
}

.rating-item {
    padding: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-item .user-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.rating-item .rating-date {
    font-size: 0.8rem;
    color: #999;
    margin-left: 10px;
}

.rating-item .rating-comment {
    margin-top: 5px;
    font-size: 0.95rem;
}

/* Puanlama Özeti */
.rating-summary {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-average {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 10px;
}

/* Puanlama Butonu */
.btn-show-ratings {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
    padding: 5px 10px;
    margin-top: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-show-ratings:hover {
    background-color: #f5f5f5;
}

/* Puanlama Modal */
.rating-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.rating-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.rating-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.rating-modal-close:hover {
    color: #333;
}

.rating-modal-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.2rem;
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .rating-modal-content {
        margin: 15% auto;
        width: 95%;
        padding: 15px;
    }
    
    .rating-selector label {
        font-size: 1.3rem;
    }
}
