/**
 * Styles for the donation modal.
 *
 * @package   DonateHQ_Charity_Claims
 * @since     1.0.0
 */

.dohq-modal-hidden {
	display: none;
}

.dohq-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99998;
}

.dohq-modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 5px;
	z-index: 99999;
	width: 90%;
	max-width: 480px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dohq-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	border: none;
	background: transparent;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.dohq-modal-title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.5em;
	text-align: center;
}

.dohq-modal-tabs {
	display: flex;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}

.dohq-tab-link {
	flex-grow: 1;
	padding: 10px 15px;
	border: none;
	background: #f9f9f9;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px; /* Overlap the container border */
	font-size: 1em;
}

.dohq-tab-link.active {
	background: #fff;
	border-bottom-color: #777;
	font-weight: bold;
}

.dohq-amount-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.dohq-custom-amount {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding-left: 10px;
	margin-bottom: 20px;
}
.dohq-custom-amount .dohq-currency-symbol {
	font-size: 1.2em;
}
.dohq-custom-amount input {
	border: none !important;
	box-shadow: none !important;
}

.dohq-modal-footer {
	text-align: center;
}

#dohq-modal-response {
	margin-bottom: 10px;
	min-height: 1.2em;
}
#dohq-modal-response.error { color: #d63638; }
#dohq-modal-response.success { color: #28a745; }

#dohq-frequency-selection {
	margin-bottom: 20px;
}