/* 알림창 스타일 */
.alert-float {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    font-size: 14px;
}



.alert-success {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;    color: #721c24;
}

.alert-info {
    background-color: #cce5ff;
    border-left: 4px solid #0d6efd;
    color: #004085;
}

/* 커스텀 알림창 스타일 */
.custom-alert-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    font-size: 14px;
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    min-width: 300px;
}

.custom-alert-content {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.custom-alert-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.custom-alert-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.custom-alert-confirm {
    background: #0d6efd;
    color: white;
}

.custom-alert-confirm:hover {
    background: #0b5ed7;
}

.custom-alert-cancel {
    background: #6c757d;
    color: white;
}

.custom-alert-cancel:hover {
    background: #5c636a;
}

/* 애니메이션 */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}