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;
}

.hide{
    display:none;
}

.spacer{
    height: 15px;
}

/* Fix card images in nav menu to be same height with object-fit */
.dropdown-menu .card .fixed-card-img {
    height: 180px; /* Set your desired max height */
    width: 100%; /* Full width of the card */
    object-fit: cover; /* Maintain aspect ratio, crop overflow */
}

/* Purple badge aligned with Blogzine */
.text-bg-purple {
    color: #ffffff; /* white text */
    background-color: #8c63ff; /* purple */
}

/* Pink badge aligned with Blogzine */
.text-bg-pink {
    color: #ffffff; /* white text */
    background-color: #ff6f91; /* pink */
}

/* Prevent auto-zoom on iOS for all text-like inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea {
    font-size: 16px !important; /* ensure override of Bootstrap/defaults */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

    /* Optional: cleaner focus style */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    textarea:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    }



