/* CSS van de geldteller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 80px; /* ← HIER AANPASSEN: 80px → 60px */
    width: auto;
    height: auto;
}

.card {
    border-radius: 10px;
}

#btn {
    transition: all 0.3s;
}

#btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#totaal {
    color: #0d6efd;
}

/* Kleinere aanpassingen voor mobiel */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .center-image {
        max-height: 50px;
    }
}

/* Rest van je CSS blijft hetzelfde */
footer {
    font-size: 0.9rem;
}

footer a {
    color: #0d6efd;
    transition: color 0.2s;
}

footer a:hover {
    color: #0a58ca;
}

#resetBtn {
    transition: all 0.3s;
}

#resetBtn:hover {
    background-color: #dc3545;
    color: white !important;
}

.crud-card {
    transition: transform 0.2s;
}

.crud-card:hover {
    transform: translateY(-5px);
}

.nav-link-custom {
    border-left: 3px solid #0d6efd;
    transition: all 0.3s;
}

.nav-link-custom:hover {
    background-color: #f8f9fa;
    border-left: 3px solid #0dcaf0;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
    text-decoration: none;
}

.block-title {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}