*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.notifications{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    overflow: hidden;
}

.notification{
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #28a745;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transform: translateX(300px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    font-size: 18px;
}

.notification.Show{
    transform: translateX(0);
    opacity: 1;
}

button{
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover{
    background-color: #0056b3;
}
