/* Add these styles to your existing CSS */
.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px 25px 20px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    z-index: 1000;
    transition: top 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.notification.success {
    background-color: #01ad2c;
}

.notification.error {
    background-color: #cc2900;
}

.notification.show {
    top: 20px;
}

.notification .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: white;
    transition: width 2s linear;
}