/* 명소 페이지 컴포넌트 스타일 */

/* 평가 관련 스타일 */
.rating {
    color: #f1c40f;
    letter-spacing: 2px;
    display: inline-block;
    margin-right: 8px;
}

.rating-score {
    font-weight: 600;
    color: #34495e;
    background: linear-gradient(120deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 5px;
}

.rating-list li {
    padding-left: 5px;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.rating-list li:hover {
    transform: translateX(5px);
}

.crowd-note {
    font-size: 0.85rem;
    color: #e74c3c;
}

/* 정보 섹션 스타일 */
.info-heading {
    color: #2c3e50;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-section {
    margin-bottom: 25px;
}

.info-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.spot-info-card {
    background: #fff;
    border: none !important;
}

/* 평가 항목 스타일 */
.rating-item {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.rating-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.rating-label {
    font-weight: 600;
    color: #495057;
}

.rating-bar-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 120px;
}

/* 복사 메시지 스타일 */
#copyMessage {
    transition: opacity 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
} 