/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
}

/* Header & Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    border-radius: 0.3rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

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

/* Forms */
.form-control {
    border-radius: 0.3rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    margin-top: 2rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Home Page */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card .card-body {
    flex: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

/* Printer Listings */
.printer-card {
    height: 100%;
}

.printer-card .card-img-top {
    height: 20vh;

    @media (max-width: 768px) {
        height: 15vh;
    }
    object-fit: cover;
    width: 100%;
}

.printer-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-available {
    background-color: #28a745;
    color: white;
}

.status-maintenance {
    background-color: #ffc107;
    color: #212529;
}

.status-unavailable {
    background-color: #dc3545;
    color: white;
}

/* Calendar */
#calendar {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.fc-event {
    cursor: pointer;
    border-radius: 0.3rem;
}

/* Login & Registration */
.auth-form {
    max-width: 450px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Admin Dashboard */
.dashboard-stats {
    margin-bottom: 2rem;
}

.stat-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-title {
    color: #6c757d;
    font-size: 1rem;
}

.chart-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.table-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .stat-card .stat-value {
        font-size: 1.5rem;
    }
}
/* Aanvullende stijlen voor printer details pagina */
.badge.py-2 {
    font-size: 0.9rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}


/* Responsieve aanpassingen */
@media (max-width: 768px) {
    .card-img-top {
        height: 500px;
    }
}