html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}






#toolbar {
    display: flex;
    flex-wrap: wrap; /* Wrap buttons to prevent overflow */
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box; /* Include padding in total width */
    max-width: 100%; /* Prevent toolbar from extending beyond the page */
}

.btn {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn.active {
        background-color: #007bff;
        color: white;
    }



