/* ============================================================
   shared/css/kjorebok.css
   Kjørebok-spesifikke stiler — bygger på main.css
   ============================================================ */

:root {
    --primary-start: #1a6ae8;
    --primary-end:   #0d47a1;
    --bg-page:       #f0f4ff;
    --bg-login:      linear-gradient(135deg, #1a6ae8 0%, #0d47a1 100%);
    --accent:        #1a6ae8;
    --accent-dark:   #0d47a1;
}

/* ── Kjørebok-header ─────────────────────────────────────── */
.kjorebok-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.kjorebok-tittel {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

/* ── Kjøring-liste ───────────────────────────────────────── */
.kjoring-liste {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kjoring-rad {
    background: white;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
    position: relative;
}

.kjoring-rad:hover {
    box-shadow: 0 3px 10px rgba(26,106,232,0.15);
}

.kjoring-dato {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

.kjoring-bil {
    font-size: 0.875rem;
    color: #555;
    text-align: right;
}

.kjoring-km {
    font-size: 0.8rem;
    color: #777;
}

.kjoring-total {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    text-align: right;
}

.kjoring-kommentar {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    grid-column: span 2;
}

.kjoring-actions {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.btn-krediter {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    padding: 0.3rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-krediter:hover {
    background: #ffc107;
    color: white;
}

.kreditert-badge {
    background: #f8d7da;
    color: #721c24;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* ── Åpen kjøring ────────────────────────────────────────── */
.kjoring-aapen {
    border-left: 4px solid #ffc107;
    background: #fffdf0;
}

.dato-aapen {
    color: #e67e00 !important;
}

.dato-klikk {
    cursor: pointer;
    text-decoration: underline dotted;
}

/* ── Tom liste ───────────────────────────────────────────── */
.ingen-kjoringer {
    text-align: center;
    color: #999;
    padding: 3rem 1rem;
    font-size: 0.95rem;
}

/* ── Mobil ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .kjorebok-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .kjoring-rad {
        grid-template-columns: 1fr;
    }

    .kjoring-bil,
    .kjoring-total {
        text-align: left;
    }

    .kjoring-actions {
        justify-content: flex-start;
    }
}