body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}
.container {
    max-width: 1200px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.header-bar {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.header-bar h2 {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 0;
}
.header-status {
    font-size: 0.95rem;
    text-align: right;
}
.order-section, .dashboard-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.order-section:hover, .dashboard-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.order-section h4, .dashboard-section h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}
.form-label {
    font-weight: 500;
    color: #374151;
}
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 10px;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}/* Knoppen basis */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.api-instellingen,
.factuuradres,
.account,
.orders-ophalen {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    color: white;
    transition: background-color 0.2s ease, transform 0.2s ease;
}/* Blauw */
.btn-primary,
.api-instellingen,
.factuuradres,
.account {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}
.btn-primary:hover,
.api-instellingen:hover,
.factuuradres:hover,
.account:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
}/* Grijs */
.btn-secondary {
    background-color: #6b7280;
    border-color: #6b7280;
}
.btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
    transform: translateY(-1px);
}/* Groen */
.btn-success,
.orders-ophalen {
    background-color: #15803d;
    border-color: #15803d;
}
.btn-success:hover,
.orders-ophalen:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    transform: translateY(-1px);
}/* Rood */
.btn-danger {
    background-color: #dc2626;
    border-color: #dc2626;
}
.btn-danger:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    transform: translateY(-1px);
}.alert {
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 12px;
}/* Paginatieknoppen in huisstijl */
.pagination .page-link {
    border-radius: 8px;
    color: #1e3a8a;
}
.pagination .page-item.active .page-link {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}/* Tabel en actieknoppen */
.table {
    table-layout: fixed;
    width: 100%;
}
.action-column {
    width: 220px;
}
.action-column .d-flex {
    flex-wrap: nowrap;
}
.action-column .btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
}
.action-column .form-select-sm {
    width: 120px;
}#loading {
    display: none;
}
.refresh-button-container {
    text-align: center;
    margin-bottom: 20px;
}
.order-section {
    display: none;
}
.order-section.visible {
    display: block;
}
.barcode-row {
    background-color: #f9f9f9;
    border-top: 1px solid #e5e7eb;
    padding: 5px 0;
}
.barcode-row td {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.barcode-row input {
    width: 400px;
}
.barcode-row .environment-text {
    font-weight: 500;
    color: #374151;
}
.dashboard-section h3.header-bar {
    color: white;
}
.hidden {
    display: none;
}/* Mobiel */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    .header-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .order-section, .dashboard-section {
        padding: 15px;
    }
    .company-logo {
        max-width: 100px;
        margin-bottom: 10px;
    }
    .header-status {
        text-align: center;
    }
    .action-column {
        width: 100%;
    }
    .action-column .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .action-column .form-select-sm {
        width: 100%;
        margin-bottom: 5px;
    }
    .barcode-row td {
        flex-direction: column;
        align-items: flex-start;
    }
    .barcode-row input {
        width: 100%;
    }
    .barcode-row .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

