.bg-primary-hero {
    background: hsla(0, 0%, 0%, 1);

    background: linear-gradient(135deg, hsla(0, 0%, 0%, 1) 0%, hsla(37, 8%, 20%, 1) 100%, hsla(40, 6%, 9%, 1) 100%, hsla(238, 72%, 55%, 1) 100%);

    background: -moz-linear-gradient(135deg, hsla(0, 0%, 0%, 1) 0%, hsla(37, 8%, 20%, 1) 100%, hsla(40, 6%, 9%, 1) 100%, hsla(238, 72%, 55%, 1) 100%);

    background: -webkit-linear-gradient(135deg, hsla(0, 0%, 0%, 1) 0%, hsla(37, 8%, 20%, 1) 100%, hsla(40, 6%, 9%, 1) 100%, hsla(238, 72%, 55%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#37342F", GradientType=1);
}

/* Toast Styles */
.toast {
    min-width: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
    overflow: hidden;
}

.toast-header {
    border-bottom: none;
    font-weight: 600;
    padding: 12px 15px;
}

.toast-header.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.toast-header.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%) !important;
}

.toast-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.toast .close {
    opacity: 1;
    font-size: 20px;
    font-weight: 300;
}

.toast .close:hover {
    opacity: 0.8;
}

/* Animación de entrada del toast */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.show {
    animation: slideInRight 0.3s ease-out;
}