/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/status-message.css
 * @description: 상태 메시지 스타일
 * @components: 상태 메시지 박스
 * @usage: 페이지 하단에 고정된 상태 메시지 표시
 */
.status-message {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 0.9em;
  color: #333;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-weight: 500;
}
