﻿.current-page {
    text-decoration: underline;
}

a:hover {
    text-decoration: none; /* Ensure there's no underline on hover */
}

.square {
    width: 160px;
    height: 160px;
    background-color: black;
    position: relative;
    text-align: center;
    box-shadow: 0 0 0 2px white; /* Add white outline */
    /*overflow: hidden;*/
}

.text {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    word-wrap: break-word; /* Allow text to break on spaces */
}

.image-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the images horizontally */
    width: auto; /* Remove fixed width to prevent overflowing */
    margin: 0 auto; /* Center the container within the page */
    padding: 0 10px; /* Optional: Add some padding to prevent the images from touching the screen edges */
}

.img-with-text {
    text-align: center;
    width: 160px;
    height: 160px;
    margin: 8px; /* Space between items */
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
}

    .img-with-text img {
        display: block;
        margin: 0 auto;
        width: 160px;
        height: 160px;
        object-fit: contain;
        box-shadow: 0 0 0 2px DarkGray;
        background-color: black;
    }



    /* Optional: If you want to add padding around the images inside the box */
    .img-with-text img {
        box-sizing: border-box;
    }




.pageNumbers {
    text-align: center;
}



.navbar ul {
    padding: 0px;
}

.navbar {
    line-height: 0px;
}

input[type=checkbox]:checked + span {
    color: white !important;
}

.text-grey {
    color: grey;
}

/* Style the search bar */
.search-bar {
    width: 100%;
    height: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    outline-width: 0;
    padding-left: 50px; /* Add padding to make space for the icon */
    margin-left: 0; /* Remove extra margin */
}

/* Search bar container */
.search-bar-form {
    width: 90vw;
    position: relative;
}

/* Style the search bar when focused */
.search-bar:focus {
    outline: none;
}

/* Icon container */
.input-icons {
    position: relative; /* Set position relative for absolute positioning of the icon */
    width: 100%;
    margin-bottom: 10px;
}

    /* The icon inside the search bar */
    .input-icons i {
        position: absolute;
        top: 10px; /* Vertically center the icon */
        left: 20px; /* Position the icon inside the input */
        color: white;
    }

/* Adjust icon dimensions */
.icon {
    padding: 0;
    min-width: 0; /* Remove unnecessary width */
    text-align: center;
    color: white;
}


.checkbox-container {
    position: absolute;
    top: 7px;
    right: 0px;
    padding-right: 0px;
}

    .checkbox-container label {
        margin-right: 25px;
    }
