a {color: blue;}
      
body {
    margin: 0;
    font-family: "arial";
    }      
 
.banner_container_desktop{      
    background-color: #003366;      
    }

.inventory-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); 
    gap: 15px;
    padding: 15px; 
    box-sizing: border-box; 
    background-color: black;
    }

@media (max-width: 550px) {
    .inventory-container {
    gap: 5px;
    padding: 5px; 
    box-sizing: border-box; 
    }
    .inventory_wrapper{
    padding: 3px;
        

}
    .inventory_title {
    margin-top: 5px;
    }
    
}    



/* Media query for one column when browser width is less than 300px */
@media (max-width: 300px) {
  .inventory-container {
    grid-template-columns: 1fr;
  }
}
      
/* Media query for two columns when browser width is between 301px and 740px */
@media (min-width: 301px) and (max-width: 740px) {
  .inventory-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media query for three columns when browser width is between 741px and 1024px */
@media (min-width: 741px) and (max-width: 1024px) {
  .inventory-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Media query for four columns when browser width is between 1025px and 1400px */
@media (min-width: 1025px) and (max-width: 1600px) {
  .inventory-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Media query for six columns when browser width is greater than 1400px */
@media (min-width: 1601px) {
  .inventory-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

.inventory_wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0px;
    background-color: #484848;
    padding: 7px;
    border-radius: 10px;
}

.inventory_wrapper:hover {
    transform: scale(1.2);
    z-index: 1;
    outline: 2px solid #ffcf03; 
    border-radius:0px;
    }


.inventory_image {
    position: relative;
    transition: transform 0.3s ease;
    }

.inventory_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
    }

.inventory_image img:hover {
    border-radius: 0px;
    } 

.inventory_stars {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 6px;
    align-items: center;
    }  

.inventory_stars img{
    height: 20px;
    width: auto;
    }

.inventory_title {
    width: 100%;
    padding: 5px;
    padding-bottom:0px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center the text */
    font-size: 1.1em;
    font-weight: 500;
    font-family: 'arial';
    text-align: center;
    }

.inventory_overlay_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 10px;
    color: darkred;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: bold;
    opacity: 0; /* Initially hide the text */
    transition: opacity 0.3s ease;
    z-index: 3;
}

.inventory_image:hover .inventory_overlay_text {
    opacity: 1; /* Show the text on hover */
}


.region_text_outer{
    width: 100%;
    background-color: #dbdbdb;
    padding: 20px;
    margin-top:30px;
    } 

.region_text_heading{
     font-size: 1.6em;
    font-weight: bold;
        max-width: 640px; /* Example maximum width */
    margin: 0 auto; /* Center horizontally */ 
    margin-bottom:30px;
    }    

.region_text{
    max-width: 640px; /* Example maximum width */
    margin: 0 auto; /* Center horizontally */  
    font-size: 1.2em;
    line-height: 1.4em;
    }



 
/*----Adsense styles-------------*/     
.adsense_inventory_container {
    width: 100%;
    background-color: black; /* Optional: Add a background color to visualize the container */
    padding-top:20px;
    padding-bottom: 20px;
    }

.adsense_inventory_970{
    display: block;
    margin: auto;
    width: 970px;
    height: 250px;
    }   
      
@media (max-width: 980px) {
.adsense_inventory_970{
    display: none; 
    }
    }

.adsense_inventory_728{
    display:none;
    margin: auto;
    width: 728px;
    height: 90px;
    }     

@media only screen and (min-width: 730px) and (max-width: 980px) {
    .adsense_inventory_728{
    display: block;
    }  
    }
      
.adsense_inventory_320{
    display: none;
    margin: auto;
    width: 320px;
    height: 100px;
    }         

@media (max-width: 730px) {
.adsense_inventory_320{
    display: block; 
    }
    }      
      
/*--END----Adsense styles-------------*/     
      
  
.inventory_control_section{
    padding:10px;
    background-color: #dbdbdb;
    max-width: 500px;
    display: block;
    vertical-align: middle;
    margin: auto;
    }    
      
 @media (max-width: 550px) {
.inventory_control_container {
    flex-direction: column;
    } 
    }

.inventory_control{
    flex:1;
    padding: 15px;   
    margin: auto;
    text-align: center;
    display: flex;
        vertical-align: middle;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Horizontally center items */
    width:100%;
    padding-right: 20px;

    }         
      
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    }      

.select-wrapper {
  position: relative;
  display: inline-block;
    width: 100%;
    }

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px; /* Adjust the padding to accommodate the arrow */
    }

.select-wrapper::after {
    content: '\25BC'; /* Unicode character for down arrow */
    position: absolute;
    top: 50%;
    right: 5px; /* Adjust the position of the arrow */
    transform: translateY(-50%);
    pointer-events: none; /* Ensure the arrow doesn't interfere with clicking on the select element */
    
    }      

.selector_in_development{
    font-size: 0.9em;
    font-weight: 400;
    margin-top:3px;
}

.sort_heading{
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
    color: black;
    vertical-align: bottom;
    }      
 
sortselect{
    margin-top:0px;
    padding-top: 0px;
}

