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;
}

.login-wrapper {
    text-align: center;
    margin-top: 75px;
}

.login__message {
    margin-top: 20px;
    color: darkred;
}

.index__message {
    margin-top: 10px;
    min-height: 50px;
    color: darkred;
}

.output-section {
    margin-top: 15px;
    margin-bottom: 15px;
}

.parent-index-wrapper {
    margin-top: 75px;
}

.taxonomy-json-result {
    white-space: pre-line;
}

.fetch-button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.index__filter {
    margin-top: 20px;
}

.filterSection {
    margin-top: 20px;
}

.filterApplyButton {
    margin-left: 10px;
}

.media-profile-taxonomies {
    margin-top: 25px;
}

#results {
    margin-top: 30px;
}

#results table {
    width: 100%;
    border-collapse: collapse;
}

#results th, #results td {
    padding: 10px;
    border: 1px solid #ddd;
}

#results th {
    background-color: dodgerblue;
    color: white;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#download-section {
    margin-bottom: 50px;
}

#logout-button {
    margin-bottom: 20px;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}