﻿.popup-container {
    position: fixed;
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
}

.popup-message {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    background-color: white; /* White background */
    color: black; /* Black text */
    padding: 15px 20px; /* Padding around the text */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    margin-bottom: 10px; /* Space between messages */
    min-width: 500px; /* Minimum width */
}

.popup-icon {
    background-color: #f44336; /* Red background for icon */
    color: white; /* White icon color */
    border-radius: 50%; /* Circular icon */
    width: 30px; /* Icon width */
    height: 30px; /* Icon height */
    display: flex; /* Center the icon */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-right: 10px; /* Space between icon and text */
    font-size: 25px;
}

.popup-close-button {
    background: none;
    border: none;
    color: black; /* Black close button color */
    font-weight: bold;
    margin-left: auto; /* Push the button to the right */
    cursor: pointer;
    transition: color 0.3s, transform 0.3s; /* Smooth transition */
    font-size: 20px;
}

    .popup-close-button:hover {
        color: #f44336; /* Change color on hover */
        transform: scale(1.2); /* Slightly enlarge on hover */
    }