/* Toast 알림 스타일 */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

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

.toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #1A2A43;
}

.toast-success {
    background: #e8f5e9;
    border-left: 4px solid #2ecc71;
}

.toast-success .toast-icon {
    background-color: #2ecc71;
    color: white;
}

.toast-error {
    background: #ffebee;
    border-left: 4px solid #e74c3c;
}

.toast-error .toast-icon {
    background-color: #e74c3c;
    color: white;
}

.toast-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.toast-info .toast-icon {
    background-color: #2196f3;
    color: white;
}

.toast-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.toast-warning .toast-icon {
    background-color: #ff9800;
    color: white;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    .toast.show {
        transform: translateY(0);
    }
}

