/*
 * euwithdrawal - front office styles.
 * @license AFL-3.0
 */

/* Honeypot: must be invisible to humans but present in the DOM. */
.euw-hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	width: 0;
	overflow: hidden;
}

/* ---- Page ---- */
.euw-page {
	max-width: 720px;
	margin: 0 auto;
}
.euw-page .euw-intro {
	margin-bottom: 20px;
}
.euw-page .form-group {
	margin-bottom: 15px;
}
.euw-optional {
	font-weight: normal;
	color: #888;
	font-size: 0.9em;
}
.euw-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.euw-actions .button + .button,
.euw-actions .btn + .btn {
	margin-left: 0;
}

/* ---- Review / confirm ---- */
.euw-summary {
	background: #f7f7f7;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	padding: 16px 20px;
	margin-bottom: 18px;
}
.euw-dl dt {
	color: #777;
	font-weight: 600;
	margin-top: 8px;
}
.euw-dl dd {
	margin: 0 0 4px 0;
}
.euw-muted { color: #999; }
.euw-scope {
	margin: 16px 0;
}
.euw-scope-title {
	font-weight: 600;
	margin-bottom: 6px;
}
.euw-radio {
	display: inline-block;
	margin-right: 18px;
	font-weight: normal;
}
.euw-items {
	margin-top: 10px;
	padding: 10px 14px;
	border: 1px dashed #ccc;
	border-radius: 4px;
}
.euw-item {
	display: block;
	font-weight: normal;
	margin-bottom: 6px;
}

/* ---- Done ---- */
.euw-done-box .euw-done-main {
	font-size: 1.15em;
	font-weight: 600;
}

/* ---- Footer / header link ---- */
.euw-link a {
	text-decoration: underline;
}
.euw-link-footer {
	margin: 6px 0;
}

/* ---- Floating button ---- */
.euw-floating {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	background: #2b3947;
	color: #fff !important;
	padding: 10px 16px;
	border-radius: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	line-height: 1;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.euw-floating:hover {
	background: #1d2730;
	color: #fff !important;
}
.euw-floating .euw-floating-text {
	white-space: nowrap;
}
@media (max-width: 480px) {
	.euw-floating .euw-floating-text {
		display: none;
	}
	.euw-floating {
		padding: 12px;
		border-radius: 50%;
	}
}
