/* Basic dialog styling */

.dialog {
    display: none;
    /* Ensure the dialog is hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.close-btn {
    display: none;
}