/* Container for the alert */
.alert-container {
    position: fixed;
    top: 95px;
    right: 20px;
    width: 300px;
    z-index: 1000;
}

/* Styling for alert box */
.alert-content {
    background-color: #4CAF50; /* Green for success; change to red for error */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Progress bar styling */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progressBar 3s linear forwards;
}

/* Animation for the progress bar */
@keyframes progressBar {
    from { width: 100%; }
    to { width: 0; }
}
