.showAlert_modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.showAlert_alertBox {
    width: 300px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.showAlert_titleBar {
    background-color: #f1f1f1;
    padding: 10px;
    font-weight: bold;
    text-align: left;
    user-select: none;
    border-bottom: 1px solid #ccc;
}

.showAlert_contentArea {
    padding: 20px;
    text-align: center;
}

.showAlert_message {
    margin: 0 0 20px 0;
}

.showAlert_okButton {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
