/* UniParcels Klantportaal */
:root { --up-primary: #0d6efd; }

html { scroll-behavior: smooth; }

/* Auth pagina's */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
}
.auth-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Stat cards */
.stat-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

/* Status badges */
.badge-label_created    { background: #6c757d; }
.badge-waiting_dropoff  { background: #fd7e14; }
.badge-dropped_off      { background: #0dcaf0; }
.badge-in_transit       { background: #0d6efd; }
.badge-arrived          { background: #6f42c1; }
.badge-ready_pickup     { background: #198754; }
.badge-collected        { background: #198754; }
.badge-expired          { background: #dc3545; }
.badge-returned         { background: #dc3545; }

/* Tracking timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute; left: 0.6rem; top: 0; bottom: 0;
    width: 2px; background: #dee2e6;
}
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-dot {
    position: absolute; left: -1.65rem; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%; background: #0d6efd;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #0d6efd;
}
.timeline-item.inactive .timeline-dot {
    background: #dee2e6;
    box-shadow: 0 0 0 2px #dee2e6;
}

/* Parcel card */
.parcel-card {
    border: none; border-radius: 12px;
    transition: box-shadow 0.2s;
    cursor: pointer;
}
.parcel-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important; }
