/* Custom styles for Flatly theme */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.footer {
    background-color: #2c3e50; /* Darker footer background */
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Add some padding to the main content */
main {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media print {
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: white;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 210mm;
        padding: 20mm;
        margin: auto;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }

    .card-header {
        background-color: #e0e0e0 !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
    }

    .table thead {
        background-color: #444 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
    }

    a.btn, .btn {
        display: none !important; /* Hide buttons during print */
    }

    .text-center.mt-4 {
        display: none !important;
    }

    @page {
        size: A4;
        margin: 20mm;
    }
}
