    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        border-radius: 6px;
        background-color: var(--bs-secondary-bg-subtle);
        margin-top: 4px;
    }
    ::-webkit-scrollbar-thumb {
        background-color: var(--bs-danger);
        border-radius: 6px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--bs-danger-bg-subtle);
        border-radius: 6px;
    }
    
    .btn {
        /*text-align: right;*/
    }
    
    @media (max-width: 768px) {
        #sidePanel {
            display: none;
        }
    }
    
    @media (min-width: 769px) {
        #sidePanel .list-group {
            width       : 18rem;
            height      : 100vh;
            overflow-y  : scroll;
            position    : absolute;
        }
    }
    
    .nav-tabs .nav-link {
      background-color: #ccc;
      border-color: #dee2e6;
    }
    
    .nav-tabs .nav-link:hover {
      background-color: #e9ecef; /* Slightly darker grey on hover */
      color: #0056b3; /* Darker blue text on hover */
      border-color: #dee2e6;
    }
    
    .nav-item .dropdown-toggle, .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-item .dropdown-toggle:focus, .nav-item .dropdown-toggle:hover {
        background-color: var(--bs-danger-bg-subtle);
        border-radius: 8px;
    }
    
    .list-group-item {
        font-size: 0.9rem;
    }