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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/* Category menu styling — placed at bottom of site.css */
.category-menu-bar .navbar .nav-link,
.category-bar .navbar .nav-link {
    color: #fff !important;
    transition: color 0.18s ease, background-color 0.18s ease;
    border-radius: 6px;
}

    .category-menu-bar .navbar .nav-link:hover,
    .category-bar .navbar .nav-link:hover {
        color: #ffc107 !important;
        background-color: #222 !important;
        border-radius: 5px;
    }

    .category-menu-bar .navbar .nav-link.active,
    .category-bar .navbar .nav-link.active {
        color: #ffc107 !important;
        background-color: #111 !important;
        border-radius: 5px;
    }

.category-menu-bar {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #000 !important; /* Black bar only inside container */
    width: 100%;
}

.container.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.category-menu-bar .nav-link {
    color: #fff !important;
    transition: color 0.18s ease, background-color 0.18s ease;
}

    .category-menu-bar .nav-link:hover {
        color: #ffc107 !important; /* Yellow hover */
    }
.side-card img {
    height: 100px;
    object-fit: cover;
    width: 100%;
}

.side-card .fw-bold {
    font-size: 0.9rem;
    line-height: 1.2rem;
}

.side-card .card-title {
    font-weight: 600;
}

#newsTicker a {
    color: yellow;
    text-decoration: none;
    padding: 0 10px;
    pointer-events: auto;
}


body {
    padding-top: 120px; /* adjust if header area is taller or shorter */
}

/* optional: for smaller screens you can reduce it */
@media (max-width: 768px) {
    body {
        padding-top: 180px;
    }
}