/* Qoss Membership Management — front-end styles.
   Kept intentionally minimal/unopinionated so themes can restyle freely;
   every element uses a stable qoss- class extensions/themes can target. */

.qoss-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.qoss-plan-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
}

.qoss-plan-price {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0.5rem 0 1rem;
}

.qoss-plan-period {
	font-size: 0.9rem;
	font-weight: 400;
	color: #666;
}

.qoss-checkout-form .qoss-field,
.qoss-checkout-form fieldset {
	margin-bottom: 1rem;
	text-align: left;
}

.qoss-checkout-submit {
	width: 100%;
	padding: 0.75rem 1rem;
	font-weight: 600;
	cursor: pointer;
}

.qoss-restricted-notice {
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
}

.qoss-account-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 2rem;
}

.qoss-account-table th,
.qoss-account-table td {
	text-align: left;
	padding: 0.5rem;
	border-bottom: 1px solid #eee;
}

.qoss-status-active { color: #1a7f37; font-weight: 600; }
.qoss-status-expired,
.qoss-status-cancelled { color: #b32d2e; font-weight: 600; }
.qoss-status-pending { color: #9a6700; font-weight: 600; }

.qoss-profile-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.qoss-avatar {
	border-radius: 50%;
	object-fit: cover;
}

.qoss-profile-name {
	margin: 0;
}

.qoss-profile-private {
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
}

.qoss-edit-profile-form .qoss-field {
	margin-bottom: 1rem;
}

.qoss-edit-profile-form .qoss-textarea {
	width: 100%;
}

.qoss-account-profile-links {
	margin-bottom: 1.5rem;
}

.qoss-profile-updated-notice {
	background: #edfaef;
	border: 1px solid #b7e4c0;
	border-radius: 6px;
	padding: 0.75rem 1rem;
}
