/* 메시지 토스트 스타일 */
.message-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 300px;
  max-width: 500px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease-out;
  font-family: 'Pretendard', sans-serif;
}

.message-toast.success {
  background-color: #10b981;
  color: white;
  border-left: 4px solid #059669;
}

.message-toast.error {
  background-color: #ef4444;
  color: white;
  border-left: 4px solid #dc2626;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.message-icon {
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.message-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 반응형 메시지 토스트 */
@media (max-width: 768px) {
  .message-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}
