body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    font-weight: bold;
}

.table th {
    background-color: #f8f9fa;
}

.footer {
    background-color: #f8f9fa;
}

/* Custom styles for log entry forms */
.parameter-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 10px;
    }
}
/* Navbar gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

/* Avatar styles */
.avatar-sm {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Nav link hover effect */
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Dropdown menu styling */
.dropdown-menu {
    border-radius: 0.5rem;
}

/* Active nav item */
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}