/* assets/css/style.css */

/* Algemene stijlen */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-brand img {
    margin-right: 10px;
}

.footer {
    margin-top: auto;
}

/* Card stijlen */
.card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
}

/* Tabel styling */
.table-responsive {
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Badge styling */
.badge {
    font-weight: 500;
    padding: 5px 8px;
    margin: 2px;
}

/* Form styling */
.form-control, .form-select {
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

label {
    font-weight: 500;
}

/* Button styling */
.btn {
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Responsive stijlen */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    h5.card-title {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .table th, .table td {
        padding: 8px;
    }
}

/* ZPK Budel specifieke kleuren */
.navbar-dark.bg-primary {
    background-color: #e71a1a !important; /* Rood zoals in het logo */
}

.card-header.bg-primary {
    background-color: #e71a1a !important;
}

.btn-primary {
    background-color: #e71a1a;
    border-color: #e71a1a;
}

.btn-primary:hover {
    background-color: #c41616;
    border-color: #c41616;
}

/* Overige ZPK Budel Stijlaanpassingen */
.jumbotron {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../img/pool-background.jpg');
    background-size: cover;
    color: white;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-left: 4px solid #e71a1a;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.blok-status.blok-beschikbaar {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.blok-status.blok-vol {
    background-color: #ffebee;
    border-left: 4px solid #e71a1a;
}

.progress-bar {
    background-color: #e71a1a;
}

.nav-tabs .nav-link.active {
    border-color: #dee2e6 #dee2e6 #fff;
    border-top: 3px solid #e71a1a;
}