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;
}

.autocomplete-container
{
    position: relative;
}

.autocomplete-dropdown
{
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.autocomplete-table
{
    margin-bottom: 0;
    font-size: 0.9rem;
}

    .autocomplete-table td
    {
        vertical-align: middle;
        padding: 8px 12px;
        border-top: none;
    }

.autocomplete-item
{
    cursor: pointer;
}

    .autocomplete-item.highlighted
    {
        cursor: pointer;
        background-color: cornflowerblue;
    }

        .autocomplete-item.highlighted td
        {
            background-color: transparent;
        }

.table-success
{
    background-color: #d4edda !important;
}

.table-warning
{
    background-color: #fff3cd !important;
}

.table-danger
{
    background-color: #f8d7da !important;
}

.toast
{
    background-color: #28a745;
    color: white;
}

    .toast.bg-danger
    {
        background-color: #dc3545;
    }