/* ============================================================
   SNIPI Ekrani – Front-end CSS (FINAL FIXED VERSION)
   ============================================================ */

.snipi {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #111;
}

/* ============================================================
   HEADER – stabilen layout brez jitterja
   ============================================================ */

.snipi__header {
/* 3-stolpčni grid: levo fleksibilno, sredina fluid min/max, desno fiksno */
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	column-gap: 24px;
	padding: 0.625rem 1rem;
	margin-bottom: 0.625rem;
}

/* LEVA STRAN (logo) */
.snipi__header-left {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

/* SREDINA (naslov + datum) – fluid min/max širina */
.snipi__header-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
	max-width: min(520px, 80vw);
}

/* DESNO: paginacija + ura */
.snipi__header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
	margin-top: 2.5rem;
}


/* ============================================================
   NASLOV
   ============================================================ */

.snipi__title {
	font-weight: 600;
	font-size: 1.1rem;
}

.snipi__title--large {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

/* ============================================================
   DATUM
   ============================================================ */

.snipi__subheader {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
}

.snipi__date {
	font-size: 1.3rem;
	font-weight: 500 !important; /* enako v vseh brskalnikih */
	text-transform: none;
	white-space: nowrap; /* ne dovoli preloma */
	color: #3a4f66;
}

/* ============================================================
   PAGINACIJA + URA
   ============================================================ */

.snipi__pagination,
.snipi__clock-value {
	font-size: 1rem;
	font-weight: 300 !important;
	white-space: nowrap; /* ne prelomi v 2 vrsti */
	font-variant-numeric: tabular-nums; /* Stabilizira širino številk za uro in paginacijo */
}

.snipi__clock-value {
	font-weight: 500 !important;
}


/* ============================================================
   LOGO
   ============================================================ */

.snipi__logo {
	max-height: 5.5rem;
	max-width: 14rem;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
}

/* ============================================================
   TABELA
   ============================================================ */

.snipi__table-wrapper {
	padding: 0 1rem 3.75rem; /* prostor za sticky spodnjo vrstico */
}

.snipi__table {
	width: 100%;
	border-collapse: collapse;
}

.snipi__table th,
.snipi__table td {
	padding: 0.375rem 0.875rem;
	text-align: left;
}

.snipi__table [data-snipi-col="teacher"],
.snipi__table [data-snipi-col="room"],
.snipi__table [data-snipi-col="floor"] {
	white-space: nowrap;
	width: 1%;
}

.snipi__table [data-snipi-col="name"],
.snipi__table [data-snipi-col="program"] {
	white-space: normal;
	width: auto;
}

.snipi--program-hidden .snipi__table {
	table-layout: fixed;
}

.snipi--program-hidden .snipi__table th,
.snipi--program-hidden .snipi__table td {
	word-break: break-word;
}

.snipi__table thead th {
	font-weight: 600;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.snipi__row--alt {
	background: rgba(0,0,0,0.03);
}

/* časovni stolpec */
.snipi__day-label {
	display: inline-flex;
	align-items: center;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	gap: 0.35rem;
	color: #e07a71;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}



/* ============================================================
   SPODNJA VRSTICA – vedno fiksno na dnu zaslona
   (STYLING OSTANE IDENTIČEN)
   ============================================================ */


.snipi__bottom-row {
	position: fixed !important; /* sticky → fixed (deluje povsod) */
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #222;
	color: #fff;
	padding: 0.875rem 1rem;
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.2;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.snipi__bottom-row--hidden {
	display: none;
}

.snipi__bottom-row > * {
	margin: 0;
}

/* ============================================================
   ČAS CELICA – razporeditev dneva, ure in live ikone
   ============================================================ */


.snipi__cell--time {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	width: 100%;
	min-width: 12rem;
}

.snipi__time-wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 0.5rem;
	width: 100%;
	white-space: nowrap;
	line-height: 1.1;
}

.snipi__time {
	display: inline-block;
	white-space: nowrap;
	line-height: 1.1;
	font-size: 1rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.snipi__live-indicator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	margin-left: 0;
	width: 1.35rem;
	height: 1.35rem;
	object-fit: contain;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	justify-self: end;
}

.snipi__cell--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 14rem;
	padding: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

/* ============================================================
   RESPONZIVNI PRILAGODITVENI PAKET (mobilne in tablice)
   ============================================================ */

@media (max-width: 1024px) {
/* Skaliranje tipografije in razmikov */
.snipi {
	font-size: clamp(0.95rem, 1vw + 0.8rem, 1.05rem);
}

.snipi__header {
	grid-template-columns: 1fr;
	row-gap: 0.75rem;
	text-align: center;
}

.snipi__header-right {
	justify-content: center;
	margin-top: 0;
}

.snipi__table-wrapper {
	padding: 0 0.75rem 3.5rem;
}

.snipi__table th,
.snipi__table td {
	padding: 0.5rem 0.75rem;
}

/* Skrij program za mobilne in tablice */
.snipi [data-snipi-col="program"],
.snipi [data-snipi-program] {
	display: none;
}

.snipi__cell--time {
	min-width: 10rem;
}
}

/* ==========================================
   Odstrani notranje robove iz celic
   ========================================== */
.snipi__table th,
.snipi__table td,
.snipi__table .snipi__cell {
	border: 0 !important;    /* odstrani vse robove v celicah */
	border-width: 0 !important;
	border-style: none !important;
	border-color: transparent !important;
}
