body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', sans-serif;
}

.card {
    background-color: #161b22;
    border: 1px solid #e3e8ee;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    width: 100%;
    max-width: 400px;
}

.form-control {
    background-color: #0d1117;
    color: #c9d1d9;
    border: 1px solid #d3d7dc;
}

.form-control:focus {
    background-color: #0d1117;
    color: #fff;
    border-color: #58a6ff;
    box-shadow: 0 0 0 0.2rem rgba(88,166,255,0.25);
}

.btn-primary {
    background-color: #238636;
    border-color: #238636;
}

.btn-primary:hover {
    background-color: #2ea043;
    border-color: #2ea043;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* ✅ Algemene layout tweaks */
.container {
    padding: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* ✅ Cards */
.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f0f6fc;
}

.card-text {
    color: #eff3f7;
}

/* ✅ Tabellen (zoals productenlijst) */
.table {
    background-color: #161b22;
    color: #f0f6fc;
    border-collapse: collapse;
}

.table thead {
    background-color: #21262d;
    border-bottom: 1px solid #30363d;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #0d1117;
}

.table-hover tbody tr:hover {
    background-color: #1a1f24;
}

/* ✅ Buttons algemeen */
.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-secondary {
    background-color: #6e7681;
    border-color: #6e7681;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
}

.btn-danger {
    background-color: #cf222e;
    border-color: #cf222e;
}

.btn-danger:hover {
    background-color: #a40e26;
    border-color: #a40e26;
}

/* ✅ Inputs & selects (algemene stijl) */
select.form-select {
    background-color: #0d1117;
    color: #0b59a7;
    border: 1px solid #d3d7dc;
}

select.form-select:focus {
    background-color: #0d1117;
    color: #fff;
    border-color: #58a6ff;
    box-shadow: 0 0 0 0.2rem rgba(4, 105, 221, 0.25);
}

/* ✅ Linkjes */
a.btn {
    text-decoration: none;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
