.id-column {
    display: none;
}.status-available {
    background-color: #D4EDDA; /* Lichtgroen */
}
.status-in_maintenance {
    background-color: #FFF3CD; /* Lichtgeel */
}
.status-unknown {
    background-color: #F8D7DA; /* Lichtrood */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container for consistent width */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: #f8f8f8;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 50px;
    width: auto;
}

header h1 {
    font-size: 1.5rem;
    color: #2c3e50;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #3498db;
}

nav .btn {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav .btn:hover {
    background: #2980b9;
    color: white;
}

/* Hero Section */
.hero {
    background: url('images/hero-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    width: 100vw; /* Zorgt voor volledige breedte van de pagina */
    margin-left: calc(-50vw + 50%); /* Centreert de sectie ten opzichte van de viewport */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparante zwarte overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Zorgt ervoor dat de inhoud boven de overlay ligt */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: white;
    color: #3498db;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.hero .btn:hover {
    background: #3498db;
    color: white;
}

/* Reusable Button Styles */
.hero-btn {
    background: white;
    color: #3498db;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
    background: #3498db;
    color: white;
}

.nav-btn {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #2980b9;
}

/* Deals Section */
#deals {
    padding: 3rem 0;
    background: #f9f9f9;
}

#deals h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.vehicle-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.vehicle-cards::-webkit-scrollbar {
    height: 8px;
}

.vehicle-cards::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

.vehicle-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    flex: 0 0 auto;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vehicle-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.vehicle-card h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.vehicle-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Reservation Form */
#reservation-form {
    padding: 3rem 0;
    background: #f9f9f9;
}

#reservation-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.terms-group {
    display: flex;
    align-items: left;
    gap: 0.5rem;
}

.terms-group label {
    display: flex;
    align-items: left;
    font-weight: normal;
}

.terms-group input[type="checkbox"] {
    margin: 0;
    width: 1.2rem;
    height: 1.2rem;
}

.terms-group a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.terms-group a:hover {
    text-decoration: underline;
}

#reservation-timer {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
    background: #fff3f3;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
}

.reservation-form .btn {
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.reservation-form .btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Reservation Status Section */
#reservation-status {
    padding: 3rem 0;
    background: #f9f9f9;
}

#reservation-status h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.reservation-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.details p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.details strong {
    color: #2c3e50;
}

/* Success Section */
#success {
    padding: 3rem 0;
    background: #f9f9f9;
}

#success h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

/* Admin Section */
#admin {
    padding: 3rem 0;
    background: #f9f9f9;
}

#admin h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.reservation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservation-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2980b9;
}

.map {
    height: 300px;
    width: 100%;
    max-width: 600px;
    margin: 1rem auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    .header-logo-title {
        flex-direction: column;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    nav a {
        margin: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .form-row {
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        width: 100%;
        max-width: 300px;
    }

    .vehicle-cards {
        padding-bottom: 1.5rem;
    }

    .reservation-card {
        padding: 1rem;
    }

    .reservation-list .reservation-card {
        padding: 1rem;
    }
	.terms-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
}	