/* 토스트 메시지 스타일 */
.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toast {
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: center;
    min-width: 200px;
    max-width: 400px;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.toast.show {
    opacity: 1;
    transform: scale(1);
}

.toast-success {
    background: #4CAF50;
}

.toast-error {
    background: #f44336;
}

.toast-info {
    background: #2196F3;
}

.toast-warning {
    background: #ff9800;
}

/* 모바일 반응형 */
@media (max-width: 480px) {
    .toast {
        min-width: 250px;
        max-width: 90vw;
        font-size: 13px;
        padding: 10px 16px;
    }
}
