
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
}

.message {
    background-color: #1e90ff; 
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    position: relative;
}


.message.show {
    opacity: 1;
    transform: translateY(0);
}


.message .close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.message .close:hover {
    transform: rotate(90deg);
}
