/* Interface de saisie des résultats en front (tablette). Autonome : ne dépend
   pas du CSS wp-admin. Cibles tactiles larges, typo lisible. */
.ptv-saisie {
	--sg: #2e7d52;
	--sg-d: #246041;
	--sink: #14201a;
	--sink2: #5b6b61;
	--sstroke: #d9ddd6;
	max-width: 960px;
	margin: 0 auto;
	padding: 8px 0 40px;
	color: var(--sink);
	font-size: 16px;
	line-height: 1.4;
}
.ptv-saisie--msg { padding: 24px; border: 1px dashed var(--sstroke); border-radius: 12px; color: var(--sink2); }

/* ── Connexion ───────────────────────────────────────────────────────────── */
.ptv-saisie--login {
	max-width: 420px;
	padding: 32px 28px;
	border: 1px solid var(--sstroke);
	border-radius: 18px;
	box-shadow: 0 14px 44px rgba(20, 32, 26, .08);
	text-align: center;
}
.ptv-saisie--login h2 { margin: 0 0 18px; font-size: 22px; }
.ptv-saisie--login h2 i { color: var(--sg); margin-right: 6px; }
.ptv-saisie--login form { display: flex; flex-direction: column; gap: 12px; }
.ptv-saisie-err { color: #b32d2e; margin: 0 0 12px; font-weight: 600; }

/* ── En-tête ─────────────────────────────────────────────────────────────── */
.ptv-saisie-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.ptv-saisie-top h2 { margin: 0; font-size: 24px; }
.ptv-saisie-top h2 i { color: var(--sg); margin-right: 6px; }
.ptv-saisie-logout { color: var(--sink2); text-decoration: none; font-weight: 600; padding: 8px 14px; border: 1px solid var(--sstroke); border-radius: 999px; }
.ptv-saisie-logout:hover { background: #f4f6f2; }

.ptv-saisie .ptv-filter-bar { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 16px; }
.ptv-saisie .ptv-filter-bar .ptv-fl { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
/* Rangée catégorie + filtre nom/dossard (même row). */
.ptv-saisie .ptv-catbar { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 16px; }
.ptv-saisie .ptv-catbar .ptv-cat-select { flex: 0 1 320px; min-width: 220px; width: auto; }
.ptv-saisie .ptv-catbar .ptv-res-search { flex: 1 1 220px; min-width: 180px; }
.ptv-saisie .ptv-dnum { font-weight: 700; text-align: center; }
.ptv-saisie .ptv-club { color: var(--sink2); font-weight: 400; font-size: 13px; }
.ptv-saisie .ptv-gtag { color: var(--sink2); font-size: 13px; }
.ptv-saisie .ptv-res-table .ptv-temps { max-width: 160px; }
.ptv-saisie .ptv-res-search { margin: 0; }
.ptv-saisie .ptv-active-group { margin: 0 0 16px; padding: 12px 18px; border-radius: 12px; background: color-mix(in srgb, var(--sg) 14%, #fff); color: var(--sg-d); font-weight: 700; font-size: 18px; }
.ptv-saisie .ptv-editors-note { margin: 12px 0 0; padding: 12px 16px; border-radius: 12px; background: #fcf3cf; color: #7a5c00; font-size: 15px; font-weight: 600; }
.ptv-save-alert {
	position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
	display: none; align-items: center; justify-content: center; gap: 18px;
	padding: 18px 20px; background: #b32d2e; color: #fff; font-size: 18px; font-weight: 700;
	box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.ptv-save-retry { min-height: 44px; padding: 10px 22px; border: 0; border-radius: 999px; background: #fff; color: #b32d2e; font-weight: 700; font-size: 16px; cursor: pointer; }
.ptv-saisie-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.ptv-saisie-bar label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
.ptv-kind-badge { display: inline-block; padding: 6px 14px; border-radius: 999px; background: #eef1ea; color: var(--sg); font-weight: 600; font-size: 13px; }

/* ── Champs & boutons (tactile) ──────────────────────────────────────────── */
.ptv-saisie select,
.ptv-saisie input[type="text"],
.ptv-saisie input[type="search"],
.ptv-saisie input[type="password"],
.ptv-saisie input[type="number"] {
	box-sizing: border-box;
	min-height: 48px;
	width: 100%;
	padding: 10px 14px;
	font-size: 16px;
	color: var(--sink);
	background: #fff;
	border: 1.5px solid var(--sstroke);
	border-radius: 12px;
}
.ptv-saisie select:focus,
.ptv-saisie input:focus { outline: 0; border-color: var(--sg); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sg) 18%, transparent); }
.ptv-saisie-bar select { min-width: 260px; width: auto; }

.ptv-saisie .button,
.ptv-saisie .ptv-btn-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 12px 22px;
	font-size: 16px; font-weight: 600; cursor: pointer;
	border-radius: 999px; border: 1.5px solid var(--sstroke); background: #fff; color: var(--sink);
	transition: background .15s, filter .15s, transform .15s;
}
.ptv-saisie .button:hover { background: #f4f6f2; }
.ptv-saisie .ptv-btn-primary { border: 0; background: var(--sg); color: #fff; }
.ptv-saisie .ptv-btn-primary:hover { filter: brightness(1.07); transform: translateY(-1px); }
.ptv-saisie-actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; }

/* ── Tables ──────────────────────────────────────────────────────────────── */
.ptv-saisie table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--sstroke); border-radius: 12px; overflow: hidden; }
.ptv-saisie th, .ptv-saisie td { padding: 10px 12px; border-bottom: 1px solid var(--sstroke); text-align: left; vertical-align: middle; }
.ptv-saisie thead th { background: #f4f6f2; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; color: var(--sink2); }
.ptv-saisie tr:last-child td { border-bottom: 0; }
.ptv-saisie .ptv-coureur { color: var(--sink2); font-size: 14px; }
.ptv-saisie .ptv-del { border: 0; background: transparent; color: #b32d2e; font-size: 18px; cursor: pointer; padding: 6px 10px; }
.ptv-saisie h3 { margin: 22px 0 10px; font-size: 18px; }

.ptv-saisie .ptv-import-box { margin: 14px 0; padding: 14px 16px; border: 1px dashed var(--sstroke); border-radius: 10px; }
.ptv-saisie .ptv-import-box h3 { margin: 0 0 6px; }
.ptv-saisie .ptv-import-box h3 i { color: var(--sg); margin-right: 6px; }
.ptv-saisie .ptv-import-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0 4px; }
.ptv-saisie .ptv-import-ok { color: #1a7f37; font-weight: 600; }
.ptv-saisie .ptv-import-warn { color: #996800; font-weight: 600; margin-bottom: 4px; }
.ptv-saisie .ptv-import-warn-list { margin: 0 0 8px 18px; color: #996800; }
.ptv-saisie .ptv-import-preview { margin-top: 10px; }
.ptv-saisie .ptv-import-preview summary { cursor: pointer; font-weight: 600; }
.ptv-saisie .ptv-import-preview table { margin-top: 8px; }

/* ── Statut ──────────────────────────────────────────────────────────────── */
.ptv-status { font-weight: 600; }
.ptv-status.ok { color: #1a7f37; }
.ptv-status.err { color: #b32d2e; }

@media (max-width: 640px) {
	.ptv-saisie-bar select { min-width: 0; width: 100%; }
	.ptv-saisie th, .ptv-saisie td { padding: 8px; }
}
