/* ====================== DONKERE MODUS - PERMANENT ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #121212;
    color: #e0e0e0;
    line-height: 1.5;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a73e8;
}

h2, h3 {
    margin: 25px 0 15px;
    color: #ffffff;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==================== HOOFDBUTTONS (volledige breedte) ==================== */
button, 
input[type="submit"] {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:active {
    transform: scale(0.98);
}

/* ==================== INPUTS + SELECT (nu allemaal hetzelfde) ==================== */
input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="tel"], 
input[type="file"],
select {
    width: 100%;
    padding: 14px;
    margin: 8px 0;
    border: 2px solid #444;
    border-radius: 8px;
    font-size: 1.1rem;
    background: #1e1e1e;
    color: #e0e0e0;
    cursor: pointer;
}

/* Focus-stijl voor alle invoervelden */
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
input[type="file"]:focus,
select:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.3);
}

/* Kleine knoppen in tabel (bijv. "Opslaan" bij status) */
button.small-btn,
button:not([style*="width: 100%"]) {
    width: auto !important;
    padding: 8px 16px;
    font-size: 0.95rem;
    margin-top: 0;
}

button:hover {
    background: #1660c5;
}

/* Overige stijlen (ongewijzigd) */
form p {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #e0e0e0;
}

/* Galerij grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    text-align: center;
    padding-bottom: 10px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

.gallery-item small {
    display: block;
    margin: 10px 0 5px;
    font-size: 0.95rem;
    color: #aaaaaa;
}

/* Overzicht pagina */
.user-list a {
    display: block;
    padding: 18px;
    background: #1e1e1e;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-size: 1.3rem;
    text-align: center;
    color: #e0e0e0;
}

/* Extra knoppen */
.top-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.top-links a {
    background: #1a73e8;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Berichten */
.success { color: #4caf50; font-weight: bold; }
.error   { color: #f44336; font-weight: bold; }

/* Responsive */
@media (max-width: 480px) {
    body { padding: 12px; }
    h1 { font-size: 1.6rem; }
    button, input[type="submit"] { padding: 16px; font-size: 1.2rem; }
}

/* Extra donkere accenten */
.chat-container, .gallery-item, .user-list a {
    background: #1e1e1e;
}