.confirm-modal {
	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: 99999;
	transition: all 0.3s ease;
}
.confirm-content {
	background: white;
	padding: 1.5rem;
	border-radius: 0.25rem;
	text-align: center;
	max-width: 30rem;
	width: 90%;
	min-height: 12.5rem;
	max-height: 80vh;
}
.confirm-message {
	font-size: 1rem;
	margin-bottom: 2.5rem;
	padding-top: 2rem;
}
.confirm-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}
.confirm-actions button {
	font-size: 0.875rem;
	padding: 0.75rem 2rem;
	cursor: pointer;
}    

#confirm-yes {
	background-color: #333;
    color: white;
	border: 1px solid #333;
}

#confirm-no {
	background-color: #fff;
    border: 1px solid #666;
    color: #666;
}

.hidden {
	opacity: 0;
	visibility: hidden;
}
