.wpm-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.wpm-modal-content {
    background: #fff;
    padding: 24px;
    margin: auto;
    max-width: 600px;
    text-align: left;
    border-radius: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.wpm-close {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

#wpm-multiplier{
	margin-top: 8px;
	width: 100%;
	border-radius: 16px;
	padding: 8px;
	border: 1px solid #b5b5b5;
}

.wpm-btn-group{
	display: flex;
    	gap: 8px;
   	flex-wrap: nowrap;
    	width: 100%;
	margin-top: 16px;
}

.wpm-btn{
    width: 50%;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
	
}


.wpm-btn.update{
	color: #fff;
	background: #203e97;
	border: 1px solid #203e97;
}	

.wpm-btn.update:hover{
	color: #fff;
	background: #14275f;
	border: 1px solid #14275f;

}

.wpm-btn.reset{
	color: #000;
	border: 1px solid #203e97;
	transition: 0.5s;
	background: #fff;

}

.wpm-btn.reset:hover{
	color: #fff;
	border: 1px solid #FF0000;
	background: #FF0000;
}

/* ============================= */
/* Confirmation Modal Overrides  */
/* ============================= */

/* Full‐screen semi‐opaque backdrop */
#wpm-confirm-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

/* Centered white box */
#wpm-confirm-modal .wpm-modal-content {
    background: #fff;
    padding: 24px;
    margin: auto;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* “X” close button in top‐right (small) */
#wpm-confirm-modal .wpm-close {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

/* Confirm/Cancel buttons */
#wpm-confirm-modal .wpm-btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
#wpm-confirm-modal .wpm-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #203e97;
}
#wpm-confirm-modal .wpm-btn.confirm {
    	color: #fff;
	background: #203e97;
	border: 1px solid #203e97;
}
#wpm-confirm-modal .wpm-btn.confirm:hover {
    	color: #fff;
	background: #14275f;
	border: 1px solid #14275f;
}
#wpm-confirm-modal .wpm-btn.cancel {
    	color: #000;
	border: 1px solid #203e97;
	transition: 0.5s;
	background: #fff;
}
#wpm-confirm-modal .wpm-btn.cancel:hover {
    	color: #fff;
	border: 1px solid #FF0000;
	background: #FF0000;
}


