#popup {
    position: absolute;
    background-color: #f44336;
    color: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

#popup p {
    margin: 0;
}

#popup:before {
    content: "⚠";
    font-size: 24px;
    display: block;
    margin: 0 auto 10px;
}


#closeButton {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
