/* Popup container styles */
.popup-container {
    position: fixed;
    bottom: 2px;
    right: 2px;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px;
    border-radius: 8px;
}

/* Popup content styles */
.popup-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
}

.popup-p {
    margin: 0;
    font-size: 0.875rem;
}

/* Close button styles */
.popup-close {
    position: absolute;
    top: -5px;
    right: 2px;
    background: none;
    border: none;
    outline: none;
    color: grey;
    font-size: 1.5rem;
}

.popup-close:focus {
    outline: none;
}
