body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

.timer-display {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    font-family: monospace;
}

.manual-entry {
    background-color: #fff3cd;
}

.hours-exceeded {
    background-color: #f8d7da;
}

.working-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.working-status.active {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.login-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.report-table th {
    background-color: #f8f9fa;
}

.action-buttons {
    white-space: nowrap;
} 

.btn-primary {
    background-color: #0070d6;
    border-color: #0070d6;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.bg-primary {
    background-color: #0070d6 !important;
}