/* Place Voting CSS */
.place-vote-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.place-vote-title {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.place-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.place-star {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.place-star:hover,
.place-star.active {
    color: #ffd700;
}

.place-star.filled {
    color: #ffd700;
}

.place-vote-message {
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

.place-vote-message.success {
    color: #28a745;
}

.place-vote-message.error {
    color: #dc3545;
}

.place-vote-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.place-vote-debug {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}
