/* sstra/app/static/css/style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-top: 56px; /* Adjust if navbar height changes */
}

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

.footer {
    padding: 1rem 0;
    background-color: #f8f9fa; /* Bootstrap's light gray */
    text-align: center;
    font-size: 0.9em;
    color: #6c757d; /* Bootstrap's muted text color */
    position: relative; /* Can be fixed or relative based on preference */
    bottom: 0;
    width: 100%;
    margin-top: 2rem;
}

.project-card { margin-bottom: 1rem; }
.time-entry-item { border-bottom: 1px solid #eee; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.time-entry-item:last-child { border-bottom: none; }

/* Make forms a bit more compact on dashboard */
.dashboard-form .form-floating > .form-control,
.dashboard-form .form-floating > .form-select {
    /* height: calc(2.5rem + 2px); */ /* Example: Smaller height */
    /* padding-top: 0.75rem; */
    /* padding-bottom: 0.75rem; */
}
.dashboard-form .form-floating > label {
    /* padding-top: 0.75rem; */
}
.dashboard-form .btn {
    /* padding: 0.375rem 0.75rem; */ /* Smaller button padding */
}