/* Overlay covers the whole viewport, hidden by default */
.lcm-av-overlay {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;              /* shown via JS */
	align-items: center;
	justify-content: center;
}

/* Popup box */
.lcm-av-modal {
	position: relative;
	background: #fff;
	padding: 20px 24px;
	max-width: 420px;
	width: 90%;
	border-radius: 8px;          /* rounded corners */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-bottom: #454955 solid 12px; /* requested bottom border */
	box-sizing: border-box;
}

/* Close (X) button */
.lcm-av-close {
	position: absolute;
	top: 6px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
.lcm-av-close:hover {
	color: #000;
}

/* Title / message / actions */
.lcm-av-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 20px;
}

.lcm-av-message {
	margin-bottom: 16px;
}

.lcm-av-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

/* Button styles – scoped to modal so we don't mess with site-wide .btn */
.lcm-av-modal .btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out,
	            background-color 0.15s ease-in-out,
	            border-color 0.15s ease-in-out,
	            box-shadow 0.15s ease-in-out;
	cursor: pointer;
}

.lcm-av-modal .btn:hover {
	text-decoration: none;
}

/* Green primary button */
.lcm-av-modal .btn-green {
	background: #6D990C;
	color: #fff;
	border-color: #6D990C;
}

.lcm-av-modal .btn-green:hover {
	background: #5b810a;
	border-color: #5b810a;
	color: #fff;
}
