/* Bootstrap Notify Custom Styling */
.bootstrap-notify-container {
    min-width: 320px;
    max-width: 450px;
    border-radius: 12px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
    border: none !important;
    padding: 18px 24px !important;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bootstrap-notify-container.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    color: #155724 !important;
    border-left: 5px solid #28a745 !important;
}

.bootstrap-notify-container.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
    border-left: 5px solid #dc3545 !important;
}

.bootstrap-notify-container [data-notify="message"] {
    flex: 1;
    padding-right: 12px;
}

.bootstrap-notify-container .close {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 0.7 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: inherit !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    float: none !important;
    margin: 0 !important;
    display: inline-block !important;
    flex-shrink: 0;
}

.bootstrap-notify-container .close:hover {
    opacity: 1 !important;
}

.bootstrap-notify-container .progress {
    height: 3px;
    margin: 10px 0 0 0 !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 2px;
    width: 100%;
}

.bootstrap-notify-container .progress-bar {
    background: currentColor !important;
    opacity: 0.6;
    height: 100%;
}

.bootstrap-notify-container.alert-success .progress-bar {
    background: #28a745 !important;
}

.bootstrap-notify-container.alert-danger .progress-bar {
    background: #dc3545 !important;
}

/* Animation classes */
.animate__animated.animate__fadeInDown {
    animation: fadeInDown 0.4s ease-out;
}

.animate__animated.animate__fadeOutUp {
    animation: fadeOutUp 0.4s ease-in;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
}
