/* Custom stylesheet for Factuur Beheer Systeem - Light Theme */

body {
    background-color: #fcfcfc;
    color: #333;
}

.navbar-brand {
    font-weight: bold;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.search-container {
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.card {
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.badge {
    font-size: 85%;
}

.display-5 {
    margin-bottom: 1.5rem;
    color: #333;
}

.home-cards .card {
    transition: transform 0.3s ease;
}

.home-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.table {
    color: #333;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Footer styling */
footer {
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }
}