.roh-total-label {
    font-size: 22px;
}

.roh-donation-tip {
    border-radius: 10px;
	margin-top: 20px;
}

.roh-tip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.roh-tip-text {
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

.roh-tip-amount-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #e53935;
}

.roh-tip-edit {
    border: none;
    background: #fff;
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}

.roh-tip-pencil {
    font-size: 14px;
}

.roh-tip-pencil img{
	width: 17px;
}

.roh-tip-subtext {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.roh-tip-input-wrap {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roh-tip-input {
    width: 120px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.roh-tip-save {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
}

.roh-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
}

.roh-total-value {
    color: #e53935;
}

/* Tip Preset Buttons */
.roh-tip-presets-wrap {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}

.roh-tip-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.roh-tip-preset-btn {
    border-radius: 999px;
    border: 1px solid #ccc;
    padding: 0.5rem 1.1rem;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.roh-tip-preset-btn:hover {
    border-color: #e53935;
    color: #e53935;
}

.roh-tip-preset-btn.is-selected {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
}

.roh-tip-preset-btn.roh-tip-preset-custom {
    background: #f5f5f5;
    border-color: #999;
    color: #666;
    font-weight: 600;
}

.roh-tip-preset-btn.roh-tip-preset-custom:hover {
    background: #e8e8e8;
    border-color: #666;
    color: #333;
}

.roh-donation-preset-btn.is-selected,
.roh-donation-frequency-btn.is-selected {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
}
/* ===== Ray of Hope – Donation Modal ===== */
/* Full-width donation modal */
.donation-modal-wrapper .modal-dialog {
	max-width: 100%;
	width: 100%;
	margin: 0;
}

.donation-modal-wrapper .modal-content {
	border-radius: 0;
	border: none;
	min-height: 100vh;
}

.roh-donation-modal-fullscreen {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.roh-donation-header {
	border-bottom: 1px solid #eee;
	padding: 1.5rem 1.5rem 0;
	max-width: 900px; /* Match .roh-donation-body */
	margin: 0 auto; /* Center horizontally */
	width: 100%;
	display: flex;
	justify-content: center; /* Center content */
}

.roh-donation-tabs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.roh-donation-tab-btn {
	border-radius: 999px;
	border: 1px solid #e53935;
	background: #fff;
	color: #e53935;
	padding: 0.6rem 1.4rem;
	font-weight: 600;
	cursor: pointer;
}

.roh-donation-tab-btn.is-active {
	background: #e53935 !important;
	color: #fff !important;
}

.roh-donation-body {
	padding: 1.5rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 120px);
}

.roh-donation-tab-panels {
	margin-top: 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
/*
.roh-donation-tab-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
}
    */
.roh-donation-tab-panel {
	display: none;
}

.roh-donation-tab-panel.is-active {
	display: block;
}

.roh-donation-form-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.roh-donation-form {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.roh-donation-section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-family: 'Work Sans';
}

.roh-donation-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.roh-donation-preset-btn {
	border-radius: 999px;
	border: 1px solid #ccc;
	padding: 0.5rem 1.1rem;
	background: #fff;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
}

.roh-donation-preset-btn:hover {
	border-color: #e53935;
	color: #e53935;
}

.roh-donation-preset-btn.is-selected, .roh-donation-preset-btn.roh-donation-preset-custom.is-selected {
	background: #e53935 !important;
	border-color: #e53935 !important;
	color: #fff !important;
}

.roh-donation-preset-btn.roh-donation-preset-custom {
	background: #e53935;
	border-color: #e53935;
	color: #fff;
}

.roh-donation-amount-input-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.roh-donation-amount-input-wrap .currency_symbol {
	font-weight: 600;
}

.roh-donation-amount-input {
	flex: 1;
}

.roh-donation-frequency-options {
	display: flex;
	gap: 0.75rem;
}

.roh-donation-frequency-btn {
	border-radius: 999px;
	border: 1px solid #e53935;
	padding: 0.5rem 1.2rem;
	background: #fff;
	color: #e53935;
	cursor: pointer;
	transition: all 0.2s ease;
}

.roh-donation-frequency-btn:hover {
	background: #f5f5f5;
}

.roh-donation-frequency-btn.is-active,
.roh-donation-frequency-btn.is-selected {
	background: #e53935 !important;
	color: #fff !important;
}

.roh-donation-submit-wrapper {
	margin-top: auto;
	padding-top: 2rem;
}

.roh-donation-submit-wrapper .roh-donation-submit-button {
	width: 100%;
	background: #e53935;
	border-color: #e53935;
	color: #fff;
	padding: 0.9rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.roh-donation-submit-wrapper .roh-donation-submit-button:hover {
	background: #c02d29;
	border-color: #c02d29;
}

/* Center content within full-width modal */
.roh-donation-modal-fullscreen {
	max-width: 100%;
	margin: 0 auto;
}

.roh-donation-body {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

@media (max-width: 600px) {
	.roh-donation-modal-fullscreen {
		max-width: 100%;
		padding: 0 0.5rem;
	}

	.roh-donation-body {
		padding: 1rem;
		min-height: calc(100vh - 100px);
	}

	.roh-donation-header {
		padding: 1rem 1rem 0;
	}

	.roh-donation-tabs {
		flex-direction: row;
	}

	.roh-donation-section {
		margin-bottom: 1.5rem;
	}

	.roh-donation-submit-wrapper {
		padding-top: 1.5rem;
	}
}

