.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100002;
    width: 350px;
    max-width: 90%;
}

.notification {
    background-color: #1a1a1a;
    color: #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    animation: slide-in 0.3s forwards;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.hide {
    animation: slide-out 0.3s forwards;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
    }
}

@keyframes slide-out {
    to {
        transform: translateX(120%);
    }
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
}

.notification-title i {
    margin-right: 8px;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #e5e5e5;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.notification-actions {
    display: flex;
    padding: 0 15px 15px;
    gap: 10px;
    justify-content: flex-end;
}

.notification-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.notification-btn-primary {
    background-color: #2d2d2d;
    color: #e5e5e5;
}

.notification-btn-primary:hover {
    background-color: #404040;
}

.notification-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
}

.notification-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.notification-success .notification-header {
    background-color: rgba(144, 238, 144, 0.15);
    border-bottom: 1px solid rgba(144, 238, 144, 0.3);
}

.notification-success .notification-title i {
    color: #90EE90;
}

.notification-error .notification-header {
    background-color: rgba(255, 182, 193, 0.15);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
}

.notification-error .notification-title i {
    color: #FFB6C1;
}


.notification-warning .notification-header {
    background-color: #664d03;
    color: #fff3cd;
}

.notification-info .notification-header {
    background-color: #055160;
    color: #cff4fc;
}

.notification-confirm .notification-header {
    background-color: rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.notification-confirm .notification-title i {
    color: #3b82f6;
}

.notification-btn-primary {
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notification-btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification-btn-secondary {
    background-color: #4b5563;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notification-btn-secondary:hover {
    background-color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}