/* ============================================================
   SNIPI Ekrani – Front-end CSS
   ============================================================ */

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

/* ============================================================
   FONT SCALE – CSS spremenljivka nastavljena iz JS (fill mode)
   --snipi-row-scale: faktor skaliranja pisave (privzeto 1)
   ============================================================ */

.snipi {
	--snipi-row-scale: 1;
}

/* Tabela bere spremenljivko – pisava vrstic se skalira sorazmerno */
.snipi__table td,
.snipi__table th {
	font-size: calc( 0.95rem * var( --snipi-row-scale ) );
}

/* Časovni stolpec */
.snipi__time {
	font-size: calc( 1rem * var( --snipi-row-scale ) );
}

/* ============================================================
   HEADER
   ============================================================ */

.snipi__header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 32px;
	padding: 10px 16px;
}

.snipi__header-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.snipi__header-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 360px;
	max-width: 500px;
}

.snipi__header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 220px;
	flex-shrink: 0;
}

/* ============================================================
   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;
}

/* ============================================================
   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;
	text-transform: none;
	white-space: nowrap;
}

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

.snipi__pagination,
.snipi__clock-value {
	font-size: 1rem;
	font-weight: 300 !important;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

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

.snipi__logo {
	max-height: 70px;
	width: auto;
}

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

.snipi__table-wrapper {
	padding: 0 16px 60px; /* prostor za sticky spodnjo vrstico */
}

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

/* Bazne vrednosti – preglasi jih CSS spremenljivka --snipi-row-scale */
.snipi__table th,
.snipi__table td {
	padding: calc( 6px * var( --snipi-row-scale ) ) calc( 14px * var( --snipi-row-scale ) );
	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);
}

/* Dan label (prihodnji dnevi) */
.snipi__day-label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
	color: rgba(0, 0, 0, 0.65);
}

.snipi__table td:first-child {
	white-space: nowrap;
	width: 1%;
}

/* ============================================================
   SPODNJA VRSTICA – vedno fiksna na dnu
   ============================================================ */

.snipi__bottom-row {
	position: fixed !important;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #222;
	color: #fff;
	padding: 8px 16px;
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.2;
	margin: 0;
	z-index: 999;
}

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

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

/* ============================================================
   LIVE EVENT INDICATOR
   - Ikona je poravnana na desni rob celice s pravilnimi odmiki
   - Večja in bolj vidna (34px)
   - Utripajoča animacija
   ============================================================ */

@keyframes snipi-pulse {
	0%   { opacity: 1;    transform: scale(1);    }
	50%  { opacity: 0.4;  transform: scale(0.88); }
	100% { opacity: 1;    transform: scale(1);    }
}

.snipi__live-indicator {
	display: block;
	width:  calc( 34px * var(--snipi-row-scale) );
	height: calc( 34px * var(--snipi-row-scale) );
	object-fit: contain;
	flex-shrink: 0;
	margin-left: auto;    /* potisne ikono na desni rob */
	padding: 4px 6px 4px 10px;
	box-sizing: content-box;
	animation: snipi-pulse 1.6s ease-in-out infinite;
}

/* Časovni wrapper: čas levo, live ikona desno */
.snipi__time-wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	line-height: 1.1;
	width: 100%;
}
