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;
}

.status-text {
    margin-left: 20px; /* Moves Yes/No 10px away to the right from the label */
}

.value-cell {
    padding-left: 20px; /* Adjust value as needed */
}

/*th, td {
    text-align: center;
}*/

.info-icon {
    font-style: normal; /* normal font style, not italic */
    color: #0d6efd; /* Bootstrap primary blue */
    margin-left: 4px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.btn-lightblue {
    background-color: #5dade2; /* lighter blue */
    color: white;
    border-color: #5dade2;
}

.btn-lightblue:hover, .btn-lightblue:focus {
    background-color: #5499c7;
    border-color: #5499c7;
}

.btn-crimson {
    background-color: crimson;
    color: white;
    border-color: crimson;
}

.btn-crimson:hover, .btn-crimson:focus {
    background-color: #b22222; /* darker crimson for hover */
    border-color: #b22222;
}



/* Make autocomplete dropdown font smaller */
.ui-autocomplete {
    font-size: 0.875rem; /* ~14px */
}

/* Optional: tighten up spacing a bit */
.ui-menu-item-wrapper {
    padding: 4px 8px;
}

/* Optional: make the symbol bold and company lighter */
.ui-menu-item-wrapper strong {
    font-weight: 600;
}

.ui-menu-item-wrapper small {
    color: #666;
    font-size: 0.8em;
}


.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.env-nonprod {
    background-color: #ff9800; /* modern orange tone */
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.card-header:not(.env-nonprod) {
    background-color: #0d5eaf; /* blue */
    color: white;
}


.small-indices {
    background-color: #f8f9fa; /* subtle gray background */
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

.small-indices .card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0 2px rgba(0,0,0,0.05);
}
.market-section-header {
    margin-top: 4rem; /* increase/decrease as needed */
    margin-bottom: 0.2rem;
}


.table td, .table th {
    padding-top: 0.6rem;
    padding-bottom: 0.8rem;
}

.market-data-footer {
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid transparent; /* prevents margin collapse */
}


