/* stil.css — Osnoven, čist izgled */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Arial, sans-serif;
    font-size: 15px;
    background: #f4f4f4;
    color: #222;
}

/* ── Navigacija ── */
nav {
    background: #cc0000;
    color: white;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a { color: white; text-decoration: none; }
nav a:hover { text-decoration: underline; }

/* ── Vsebina ── */
.vsebina {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h2 {
    font-size: 1.15rem;
    margin: 2rem 0 0.75rem;
    color: #333;
}

/* ── Kartice ── */
.kartica {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.kartica-glava {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

/* ── Sredi (za login/registracija) ── */
.sredina {
    max-width: 380px;
    margin: 4rem auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 2rem;
}
.sredina h1 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.sredina h2 { font-size: 1.1rem; margin-bottom: 1rem; }

/* ── Obrazci ── */
label {
    display: block;
    font-size: 0.82rem;
    font-weight: bold;
    color: #555;
    margin-top: 0.9rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

input[type="text"],
input[type="password"],
input[type="date"],
select {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #222;
    background: white;
}

input:focus, select:focus {
    outline: none;
    border-color: #cc0000;
}

/* Tri stolpci za P1, P2, P3 */
.vrstca-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
@media (max-width: 560px) {
    .vrstca-3 { grid-template-columns: 1fr; }
}

/* ── Gumbi ── */
button {
    margin-top: 0.75rem;
    background: #cc0000;
    color: white;
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}
button:hover { background: #aa0000; }

/* ── Tabele ── */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
th {
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-bottom: 2px solid #eee;
    font-size: 0.78rem;
    color: #777;
    text-transform: uppercase;
}
td {
    padding: 0.55rem 0.6rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafafa; }

/* Moja vrstica v lestvici */
.jaz td { background: #fff5f5; font-weight: bold; }

/* Pravilna / napačna napoved */
.prav  { color: #007700; }
.napak { color: #cc0000; }

/* ── Sporočila ── */
.napaka  { color: #cc0000; font-size: 0.88rem; margin: 0.5rem 0; }
.zeleno  { color: #007700; font-size: 0.88rem; margin: 0.5rem 0; }
.opomba  { color: #888; font-size: 0.85rem; margin: 0.5rem 0; }
.sivo    { color: #888; font-size: 0.85rem; }

.sporocilo {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.sporocilo.zeleno { background: #efffef; border: 1px solid #aaddaa; }
.sporocilo.rdece  { background: #fff0f0; border: 1px solid #ffaaaa; }

/* ── Stopničke (podij) ── */
.stopnice {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin: 0.5rem 0;
}

.mesto {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

/* Ime dirkača nad stopnico */
.ime {
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.3rem;
    word-break: break-word;
}

/* Stopnica — obarvana površina */
.blok {
    width: 100%;
    text-align: center;
    border-radius: 4px 4px 0 0;
    padding: 0.4rem;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

/* Različne višine */
.m1 .blok { height: 72px; background: #fff3cc; border: 1px solid #e6c84a; }
.m2 .blok { height: 50px; background: #eeeeee; border: 1px solid #cccccc; }
.m3 .blok { height: 36px; background: #f2ddd0; border: 1px solid #d4aa90; }
