* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  list-style: none;
}

body {
  background: #1a1718;
}


.container {
  margin-top: 130px;
}

.column {
  width: 50%;
  padding: 0 10px;
  display: inline-block;
  overflow-x: hidden;
  margin-bottom: 20px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {
  margin: auto;
  display: inline-block;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: inline-block;
  clear: both;
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  text-align: center;
  padding: -5px;
  border-radius: 8px;
  background-image: linear-gradient(
    to right,
    rgb(232, 232, 232),
    rgb(255, 255, 255)
  );
}

.pictures {
  width: 100%;
  height: auto;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.dropdown {
  margin-right: 10px;
  position: relative;
  overflow:hidden;
}


#dropdown-menu li {
  padding: 5px;
}

.dropdown__menu--title {
  padding: 10px;
  font-weight: bold;
  background-color:#0f0c0c;
  font-size:1.1rem;
  color: white;
  
}

.dropdown__list--empty{
  font-weight:lighter;
  padding:10px;
  text-align:center;
  color:grey;
  opacity:0.8;
  font-size:0.8rem;
}

.clr-black{
  color:black;
}

.clr-black > p {
  background-color: #1f1f1f;
  padding-block: 4px;
  color:white;
}

a.clr-black{
    background-color: #1f1f1f;
}

.table__title--trash{
  background-color:#0f0c0c;
  font-size:0.7rem;
  color:white;
  font-weight: lighter;
  padding:0px 10px;
  font-size: 1rem;
  border:1px;
  cursor:pointer;
  border-radius:10px;
}

#dropdown-menu ul{
  justify-content: space-between;
}

.naracka-button{
  background-color: inherit;
  border: 0px solid;
  cursor:pointer;

} 

#dropdown-menu {
  opacity:0;
  background:white;
  width:300px;
  right:1%;
  position:absolute;
  box-shadow: 0px 2px 5px 0.1 rgba(0, 0, 0, .2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;

}

.dropdown__menu--header{
  background-color: #0f0c0c;
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}

/* #dropdown-menu.active {
  opacity:1;
  transition: opacity 200ms ease-in-out;
  pointer-events: auto;
} */

.table__content--price{
  display:flex;
  flex-direction: row;
  gap:8px;
}

.table__content--name{
  display:inline;
}


.poster-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.poster-content {
    position: relative;
    width: 90%;
    max-width: 500px; /* Adjust max width as needed */
    aspect-ratio: 1 / 1; /* Square aspect ratio */
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    object-fit: contain;
}

/* Close button */
.poster-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;c
}

.poster-close-button:before,
.poster-close-button:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: #000;
}

.poster-close-button:before {
    transform: rotate(45deg);
}

.poster-close-button:after {
    transform: rotate(-45deg);
}


@media screen and (max-width: 290px) {
  .navbar label {
    margin-right: 30px;
    font-size: 16px;
  }
  .logo {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 400px) and (min-width: 291px) {
  .navbar label {
    font-size: 20px;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 450px) {
  p {
    font-size: 3.5vw;
  }
}

@media screen and (min-width: 1100px) {
  .column {
    width: 25%;
  }
  .row {
    display: inline;
  }

  .row::after {
    display: inline;
  }
}


@media screen and (min-width: 800px) and (max-width: 1099px) {
  .column {
    width: 33%;
  }
  .row {
    display: inline;
  }

  .row::after {
    display: inline;
  }
}

@media screen and (max-width: 799px) {
  .column {
    /* float: left; */
    width: 100%;
    margin:auto;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .row {
    width:50%;
    margin:auto;
    /*margin: 0 -5px;*/
  }
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
}

@media only screen and (max-width:900px){
  .hamburger-menu{
    display:block;
    margin-left:auto;
    margin-right:1rem;
  }
  
  .navbar{
    padding-right:2rem;
  }

  .nav-items{
    display:none;
  }

  .active{
    display:flex;
    flex-direction: column;
    background-color: rgba(15, 12, 12, 0.99);
    position:absolute;
    left:0;
    top:100px;
    width:100vw;
    height:100vh;
    z-index:1000000;
  }

  .active > *{
    text-align: center;
    color:white;
    font-weight:bold;
    font-size: 1.1rem;
    padding: 1rem 3rem;
  }

  .active > li > a{
    padding: 1rem 5rem;
  }

  .active > * :hover{
    background-color: inherit;
  }

  .active > :first-child{
    margin-top:2rem;
  }
  
}