.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert {
    background-color: #2d3748;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s forwards;
    cursor: pointer;
    min-width: 280px;
    opacity: 0.95;
    transform: translateX(120%);
    border-left: 4px solid #4a5568;
    backdrop-filter: blur(10px);
}

.alert.success {
    background-color: rgba(39, 63, 46, 0.85);
    border-left-color: #48bb78;
}

.alert.error {
    background-color: rgba(63, 39, 39, 0.85);
    border-left-color: #f56565;
}

.alert.info {
    background-color: rgba(39, 54, 63, 0.85);
    border-left-color: #4299e1;
}

.alert.warning {
    background-color: rgba(63, 58, 39, 0.85);
    border-left-color: #ed8936;
}

.alert.confirm {
    background-color: rgba(45, 55, 72, 0.95);
    min-width: 320px;
}

.alert i {
    font-size: 18px;
}

.alert.success i {
    color: #48bb78;
}

.alert.error i {
    color: #f56565;
}

.alert.info i {
    color: #4299e1;
}

.alert.warning i {
    color: #ed8936;
}

.alert-content {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
}

.confirm-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
}

.confirm-buttons button {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.confirm-yes {
    background-color: #553c9a;
    color: white;
}

.confirm-yes:hover {
    background-color: #6b46c1;
}

.confirm-no {
    background-color: #4a5568;
    color: white;
}

.confirm-no:hover {
    background-color: #2d3748;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}