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;
}

/* Light, underlined headers */
.mlb-header {
    background: none;
    border-bottom: 3px solid #005c99; /* MLB blue accent */
    color: #005c99;
    font-weight: 600;
}

.matchup-header {
    background: none;
    border-bottom: 3px solid #28a745; /* Bootstrap green */
    color: #28a745;
    font-weight: 600;
}

.fantasy-header {
    background: none;
    border-bottom: 3px solid #343a40; /* Dark gray */
    color: #343a40;
    font-weight: 600;
}

/* News items styling */
.news-item {
    align-items: start;
}

.news-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.news-content a {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
}

    .news-content a:hover {
        text-decoration: underline;
    }