/* 리뷰 관련 커스텀 스타일 */
.review-submit-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 10px !important;
    padding: 0 10px !important;
}

.char-counter {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    font-size: 0.9em !important;
    color: #888 !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    padding: 2px 5px !important;
    border-radius: 3px !important;
    display: flex !important;
    align-items: center !important;
}

.textarea-container {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.review-textarea {
    width: 100% !important;
    height: 120px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    resize: none !important;
    font-size: 30px !important;
}

/* 심사중인 리뷰 스타일 */
.pending-review {
    background-color: rgba(255, 248, 220, 0.5) !important; /* 연한 노란색 배경 */
    border-left: 3px solid #f39c12 !important; /* 주황색 테두리로 변경 */
}

.pending-text {
    color: #f39c12 !important; /* 주황색 텍스트로 변경 */
    font-style: italic !important; /* 이탤릭체 */
    font-weight: bold !important; /* 굵게 */
}

/* 모든 리뷰 항목에 스타일 적용 */
.review-item {
    margin-bottom: 15px !important;
    padding: 10px !important;
    border-radius: 5px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    background-color: #ffffff !important; /* 모든 리뷰 배경색을 흰색으로 통일 */
}

/* 홀수/짝수 번째 리뷰 항목의 배경색 차이 제거 */
.review-item:nth-child(odd) {
    background-color: #ffffff !important; /* 흰색으로 통일 */
}

.review-item .review-header {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 5px !important;
}

.review-item .reviewer {
    font-weight: bold !important;
}

.review-item .rating {
    color: #ffcc00 !important;
}

.review-item .review-text {
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* 내용 심사중 텍스트가 포함된 모든 요소에 스타일 적용 */
*:contains('내용 심사중..') {
    color: #f39c12 !important;
    font-style: italic !important;
    font-weight: bold !important;
} 