/* CardSlap Birthday Reminders — front-end styles */
.csbr-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}
.csbr-hero {
	text-align: center;
	margin-bottom: 28px;
}
.csbr-hero-emoji {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 12px;
}
.csbr-title {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
	color: #111;
}
.csbr-sub {
	font-size: 17px;
	line-height: 1.6;
	color: #444;
	max-width: 560px;
	margin: 0 auto;
}
.csbr-card {
	background: #fff;
	border: 1px solid #eee;
	border-top: 5px solid #f7941e;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
	padding: 28px 26px;
}
.csbr-center { text-align: center; }
.csbr-field { margin-bottom: 16px; }
.csbr-field label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 6px;
	color: #222;
}
.csbr-hint { font-weight: 400; color: #999; font-size: 12px; }
.csbr-field input[type="text"],
.csbr-field input[type="email"],
.csbr-field select {
	width: 100%;
	padding: 11px 12px;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	color: #222;
	box-sizing: border-box;
}
.csbr-field input:focus,
.csbr-field select:focus {
	border-color: #f7941e;
	outline: none;
	box-shadow: 0 0 0 3px rgba(247, 148, 30, 0.15);
}
.csbr-row {
	border: 1.5px dashed #f0c48f;
	background: #fffaf3;
	border-radius: 10px;
	padding: 16px 16px 6px;
	margin-bottom: 14px;
}
.csbr-row-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.csbr-row-title { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #f7941e; }
.csbr-remove {
	background: none;
	border: none;
	color: #bbb;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 6px;
}
.csbr-remove:hover { color: #e4373d; }
.csbr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 14px;
}
.csbr-span2 { grid-column: span 2; }
.csbr-dates { display: flex; gap: 8px; }
@media (max-width: 560px) {
	.csbr-grid { grid-template-columns: 1fr; }
	.csbr-span2 { grid-column: span 1; }
}
.csbr-add {
	display: block;
	width: 100%;
	background: none;
	border: 2px dashed #ddd;
	border-radius: 10px;
	color: #777;
	font-weight: 700;
	font-size: 15px;
	padding: 12px;
	cursor: pointer;
	margin: 4px 0 18px;
}
.csbr-add:hover { border-color: #f7941e; color: #f7941e; }
.csbr-submit {
	display: block;
	width: 100%;
	background: #f7941e;
	border: none;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 16px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.csbr-submit:hover { background: #e08414; }
.csbr-submit[disabled] { opacity: 0.6; cursor: wait; }
.csbr-fineprint {
	font-size: 12.5px;
	color: #999;
	text-align: center;
	margin: 12px 0 0;
	line-height: 1.5;
}
.csbr-error {
	background: #fdecea;
	color: #b3261e;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 14px;
	margin-bottom: 14px;
}
.csbr-success h3 { font-size: 24px; margin: 8px 0; }
.csbr-list { list-style: none; padding: 0; margin: 12px 0; }
.csbr-list li { padding: 6px 0; border-bottom: 1px solid #f2f2f2; }
.csbr-btn-link { color: #f7941e; font-weight: 700; text-decoration: none; }
.csbr-btn-link:hover { text-decoration: underline; }
.csbr-manage-list { list-style: none; padding: 0; margin: 16px 0; }
.csbr-manage-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 4px;
	border-bottom: 1px solid #f2f2f2;
}
.csbr-manage-empty { color: #999; }
.csbr-unsub {
	background: none;
	border: none;
	color: #bbb;
	font-size: 12.5px;
	text-decoration: underline;
	cursor: pointer;
}
.csbr-unsub:hover { color: #e4373d; }
/* Honeypot — visually gone, still in the DOM for bots */
.csbr-hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
