#search-bar {
    margin: 0 auto;
    border: 1px solid white;
    background-color: transparent; /* Use transparent to make it fully see-through */
    color: white; /* Set the text color to white */
    padding: 5px 10px; /* Add some padding for better appearance */
    width: 95%;
    border-radius: 0%;
}

#collection-count{
    text-align: center;
    margin-block: 1%;
}

/* Repeater table */
#container {
    height: auto;
    width: 60%;
    margin: 0 auto;
    /*display: flex;
    align-items: center;
    text-align: center;
    /*margin-bottom: 10px;
    margin-inline: 25%;
    padding: 10px;*/
}

.item-container{
    display: flex;
    align-items: center;
    height: auto;
    transition: transform 0.1s, background-color 0.3s, cursor 0.3s;
    border: 2px solid white;
    padding: 2%;
    margin-bottom: 2%;
}

.item-container:hover {
    transition: .3s;
    transform: scale(1.01);
    background-color: transparent !important;
}

.left-content {
    flex: 1;
    padding-right: 10%;
}

.right-content {
    flex: 1;
    padding-left: 10%;
}

.left-content h1 {
    font-size: 24px;
    padding-bottom: 5%;
    margin-bottom: 5%;
    border-bottom: 1px solid white;
}

.left-content h2 {
    font-family: "Jost";
    font-size: 18px;
    font-weight: 300;
    color: white;
    padding-bottom: 5%;
    margin-bottom: 5%;
    border-bottom: 1px solid white;
}

.left-content h3 {
    font-family: "Jost";
    font-size: 18px;
    font-weight: 300;
    color: white;
    margin-bottom:2%;
}

.cover-image {
    width: 350px;
    height: 455px;
    object-fit: cover;
    /*margin-right: 10px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.cover-image:hover {
    transform: scale(1.01);
    /*background-color: #dddddd;*/
    cursor: pointer;
}

.grid-container {
    display: grid;
    width: 80%;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-gap: 20px; /* Adjust the gap as needed */
    justify-content: center; /* Center horizontally */
    align-content: center; /* Center vertically */
    margin-block: 2%;
}

.type-button{
    font-family: "Jost";
    font-size: 24px;
    font-weight: 300;
    height: 50px;
    width: 100%;
    background: none;
    color: white;
    border: 1px solid white;
    margin: 0 auto;
}

.type-button:hover{
    height: 50px;
    width: 150 px;
    background-color: white;
    color: orange;
    border: 1px solid orange;
    cursor: pointer;
}

.type-button.selected{
    background-color: white;
    color: orange;
    border: 1px solid orange;
}