#notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25c2e3;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 1000;
    transition: top 0.5s ease-in-out;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#notification.show {
    top: 20px;
}
#notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-left: 16px;
    cursor: pointer;
}
