/* ===== Mensualidades ===== */

/* Card element (checkout + cuenta) */
.mensualidades-card {
	padding: 14px 16px;
	border: 1px solid #d9dce1;
	border-radius: 8px;
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.mensualidades-card.StripeElement--focus {
	border-color: #635bff;
	box-shadow: 0 0 0 3px rgba( 99, 91, 255, .15 );
}
.mensualidades-card.StripeElement--invalid {
	border-color: #e2401c;
}

/* Mensajes */
.mensualidades-error {
	color: #e2401c;
	font-size: 13px;
	margin: 8px 0 0;
	min-height: 16px;
}
.mensualidades-ok {
	color: #1a7f37;
	font-size: 13px;
	margin: 8px 0 0;
}
.mensualidades-alert {
	background: #fff4f2;
	border: 1px solid #f3c0b6;
	color: #a8341c;
	padding: 12px 14px;
	border-radius: 8px;
	margin: 12px 0;
	font-size: 14px;
}

/* Tabla listado */
.mensualidades-table {
	width: 100%;
	border-collapse: collapse;
}
.mensualidades-table th,
.mensualidades-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #ededed;
	text-align: left;
	font-size: 14px;
	vertical-align: middle;
}
.mensualidades-table th {
	font-weight: 600;
	color: #555;
}

/* Detalle */
.mensualidades-detail {
	width: 100%;
	border-collapse: collapse;
	margin: 12px 0 20px;
}
.mensualidades-detail th,
.mensualidades-detail td {
	padding: 10px 8px;
	border-bottom: 1px solid #ededed;
	text-align: left;
	font-size: 14px;
}
.mensualidades-detail th {
	width: 38%;
	color: #555;
	font-weight: 600;
}

/* Badges de estado */
.mensualidades-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .2px;
	white-space: nowrap;
	vertical-align: middle;
}
.mensualidades-badge--pending  { background: #fff6e0; color: #8a6d00; }
.mensualidades-badge--active   { background: #e6f6ec; color: #1a7f37; }
.mensualidades-badge--paused   { background: #eef0f3; color: #5a6573; }
.mensualidades-badge--past_due { background: #fff0ec; color: #b4391d; }
.mensualidades-badge--cancelled{ background: #f4eaea; color: #8a3a3a; }
.mensualidades-badge--expired  { background: #ececec; color: #707070; }

/* Acciones */
.mensualidades-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0;
}
.mensualidades-actions form { margin: 0; }

/* Bloque actualizar tarjeta */
.mensualidades-card-update {
	margin-top: 24px;
	padding: 18px;
	border: 1px solid #ededed;
	border-radius: 10px;
	background: #fafafa;
}
.mensualidades-card-update h4 {
	margin: 0 0 12px;
}
.mensualidades-card-update #mensualidades-save-card {
	margin-top: 14px;
}

@media ( max-width: 600px ) {
	.mensualidades-detail th { width: 45%; }
	.mensualidades-table th:nth-child(3),
	.mensualidades-table td:nth-child(3) { display: none; }
}
