.bike-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem;
    align-items: flex-start;
}

.bike-image-wrapper {
    max-width: 400px;
    flex: 1;
    border: 3px solid #28a745;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.bike-image.large {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.bike-info-wrapper {
    flex: 2;
    min-width: 300px;
}

.bike-info-wrapper h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #222;
}

.bike-info-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bike-fields-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.bike-fields-table thead {
    background-color: #f0f0f0;
}

.bike-fields-table th,
.bike-fields-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.bike-fields-table th {
    font-weight: bold;
    color: #333;
}

.bike-fields-table td {
    background-color: #fff;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .bike-details {
        flex-direction: column;
        align-items: center;
    }

    .bike-image-wrapper {
        width: 90%;
    }

    .bike-info-wrapper {
        width: 100%;
    }

    .bike-fields-table td,
    .bike-fields-table th {
        font-size: 0.95rem;
    }
}
.bike-fields-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.bike-fields-table thead {
    background: linear-gradient(90deg, #28a745 0%, #218838 100%);
    color: #fff;
    text-align: left;
}

.bike-fields-table th, .bike-fields-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
}

.bike-fields-table tbody tr:hover {
    background-color: #f9f9f9;
    transition: background-color 0.2s ease-in-out;
}

.bike-fields-table th:first-child,
.bike-fields-table td:first-child {
    width:20%;
    font-weight: 600;
}

.bike-fields-table td {
    color: #333;
    background-color: #fff;
}

/* Mobile verbeteringen */
@media (max-width: 768px) {
    .bike-fields-table th,
    .bike-fields-table td {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

.back-link {
    display: inline-block;
    margin: 1rem 2rem 0 2rem; /* aansluitend bij .bike-details margin */
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
    text-decoration: none;
    border: 2px solid #28a745;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
}

.back-link:hover,
.back-link:focus {
    background-color: #28a745;
    color: #fff;
    outline: none;
    cursor: pointer;
}
