html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    padding: 20px;
    padding-top: 220px;
}

header {
    width: 100%;
    background-color: #c3bebe;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

h1 {
    margin-top: 80px; /* Ensures content isn't hidden under the fixed header */
}

.logo-icon {
    width: 300px; /* Adjust width as needed */
    height: 130px; /* Adjust height as needed */
    background-image: url('/images/logo.png');
    background-size: contain; /* Ensures the entire image is visible */
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block; /* Ensures it behaves like an inline element */
}


footer {
    width: 100%;
    background-color: #c3bebe;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
}


.button-container {
    margin-top: 20px;
}

.button {
    margin: 10px;
    background-color: #0A3161;
}

.dashboard-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 100%;
    padding: 1rem;
}
.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.user-table th, .user-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

.user-actions {
    margin-top: 10px;
}
.user-actions button {
    margin: 0 5px;
}
.summary {
    margin-top: 20px;
    font-size: 1.2em;
}
.date-picker {
    text-align: center;
}
.date-picker input {
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

@media print {
    .button {
        display: none;
    }
}
.log-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.log-table th, .log-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

@media print {
    
    .no-print {
        display: none !important;
    }
    
    .container {
        padding-top: 0px;
    }
}