    #customAlert, #customConfirm {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
/*        transform: translate(-50%, -50%);*/
/*        width: 300px;*/
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        font-size: 12px;
		border-radius: 8px;
    }
    #customAlertHeader, #customConfirmHeader {
        background-color: #f1f1f1;
        padding: 10px;
        font-weight: bold;
        text-align: center;
        border-bottom: 1px solid #ccc;
		border-top-left-radius: 8px;
 		border-top-right-radius: 8px;

    }
    #customAlertBody, #customConfirmBody {
        padding: 20px;
        text-align: left;
    }
    #customAlertFooter, #customConfirmFooter {
        text-align: center;
        padding: 10px;
        border-top: 1px solid #ccc;
    }
    #customAlertFooter button, #customConfirmFooter button {
        padding: 8px 15px 6px 15px;
        cursor: pointer;
        display: inline-block;
    }
    #customAlertOK, #customConfirmOK {
        background-color: #b3075d;
    }
    
    #customAlertCancel, #customConfirmCancel {
    
    }
    #overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .loading {
        display:block
    }