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;
}

.page-banner {
    position: relative;
    height: 250px; /* adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

    /* Dark overlay */
    .page-banner .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

  
    .page-banner h1 {
        position: relative;
        z-index: 1;
        font-size: 7.5rem;
        margin: 0;
    }


#modalDrugResults {
    max-height: 200px; /* fixed height */
    overflow-y: auto; /* scroll vertically if too many items */
    border: 1px solid #ccc;
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
}

    #modalDrugResults li {
        padding: 5px 10px;
        cursor: pointer;
    }

        #modalDrugResults li:hover {
            background-color: #f0f0f0;
        }

#drugResults {
    background-color: #e9f2ff; /* light blue background */
    border: 2px solid #0d6efd;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
}

    #drugResults .list-group-item {
        background-color: #e9f2ff;
        border: none;
        cursor: pointer;
    }

        #drugResults .list-group-item:hover {
            background-color: #cfe2ff; /* darker on hover */
        }