html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-top: 90px;
}

.logoSmall {
    width: 304px;
    height: 51px;
}

.navbar-default {
    background-color: white;
    /*background-color: white;*/
    background-image: none;
    background-repeat: no-repeat;
    padding-bottom: 40px;
}



/* change the background color */
.navbar-custom {
    background-color: #f0f0f0;
    background: linear-gradient(#fff,#fff) bottom/ 100% 3px no-repeat, #fff;
}
    /* change the brand and text color */
    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-text {
        color: #000000;
        font-family: "Arial Narrow", "Helvetica Condensed", Arial, sans-serif;
        font-size: 1.3em;
        font-weight: bold;
    }
    /* change the link color */
    .navbar-custom .navbar-nav .nav-link {
        color: #000000;
        font-family: "Arial Narrow", "Helvetica Condensed", Arial, sans-serif;
        font-size: 1.3em;
        font-weight: bold;
    }
    /* change the color of active or hovered links */
    .navbar-custom .nav-item.active .nav-link,
    .navbar-custom .nav-item:focus .nav-link,
    .navbar-custom .nav-item:hover .nav-link {
        color: #f0b21c;
    }


.headerBottomBorder {
    border-bottom: 3px solid #670000;
    width: 100%;
    text-align: right;
}


.card {
    /*width: 400px;*/
    border-radius: 10px;
    border-width: 1px;
    border-color: silver;
    background-color: #fff;
}

.image {
    border: solid 1px silver;
    border-radius: 10px;
}

.thumbnailImage {
    /* min-height: 300px;
    min-width: 300px;
    max-height: 300px;
    max-width: 300px; */

    display: block;
    width: 100%;
    height: auto;
}


.stats {
    background: #f2f5f8 !important;
    color: #000 !important;
}


.image-container {
    width: 100%;  /*Adjust the width as needed*/ 
    padding-top: 125%;  /*16:9 aspect ratio (height / width * 100) */
    position: relative;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.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;
}

/* Enhanced filter styles */
.form-control.searching {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background-color: #f8fff9;
    transition: all 0.3s ease;
}

.form-control.searching::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

/* Loading indicator for forms */
.loading {
    position: relative;
    opacity: 0.8;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Visual feedback for form interactions */
.filter-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Enhanced button styles */
.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

