.notification {
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    text-align: center;

}

.progress-bar {
    height: 6px;
    background-color: #4CAF50;
    width: 0%;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 1s ease;
}

.notifMessage {
    margin-bottom: 8px;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}