body {
    background: #f4f7fb;
    font-family: Inter, sans-serif;
    color: #1e293b;
}

.hero {
    padding: 80px 20px 50px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero p {
    color: #64748b;
    font-size: 1.1rem;
}

.search-box {
    max-width: 650px;
    margin: 30px auto 0;
}

.search-box .form-control {
    height: 60px;
    font-size: 1.4rem;
    border-radius: 14px 0 0 14px;
    border: 2px solid #dbe4ee;
    text-transform: uppercase;
}

.search-box .btn {
    border-radius: 0 14px 14px 0;
    padding: 0 30px;
    font-weight: 600;
}

.modern-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.modern-card .card-body {
    padding: 28px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.data-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
}

.data-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.data-value {
    font-size: 1rem;
    font-weight: 600;
}

.vehicle-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vehicle-header img {
    max-width: 90px;
}

.vehicle-title h2 {
    margin: 0;
    font-weight: 800;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Registrert */
.status-registered {
    background: #dcfce7;
    color: #166534;
}

/* Avregistrert */
.status-unregistered {
    background: #e5e7eb;
    color: #374151;
}

/* Vraket */
.status-scrapped {
    background: #fee2e2;
    color: #991b1b;
}