/* 이용후기 페이지 전용 스타일 (공통 스타일은 common.css에 있음) */
/* Flash 메시지 공통 스타일 */
.alert-message {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%); /* 항상 가운데 고정 */
    max-width: 800px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 9999;
    background-color: #e0f8ec;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    white-space: nowrap;
}

/* 에러 메시지 색상 */
.alert-message.error {
    background-color: #ffe6e6;
    color: #c62828;
    border: 1px solid #e57373;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}



