*{
    margin: auto;
    padding: auto;
    /* background-color: white; */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white; /* Dark background */
    padding: 10px 20px;
    width: 100%;
    margin: 0px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.logo-box {
    background-color: rgb(224, 97, 186); /* Yellow box for 'T' */
    color: rgb(20, 19, 19);
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 2px;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content - Initially hidden */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Show the dropdown when the button is clicked */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Show the dropdown when .show class is added */
.show .dropdown-content {
    display: block;
  }
  

.search-bar input {
    background-color: transparent; /* Transparent search bar */
    border: none;

    padding: 5px 10px;
    font-size: 14px;
    color: black;
    border-bottom: 2px solid black; /* White underline */
    border-radius: 3px;
}

.search-bar input::placeholder {
    color: #aaa; /* Placeholder text color */
}

.search-bar input:focus {

    padding: 12px 15px;
    border-radius: 20px;
    width: 400px;

    outline: none;
    border-bottom: 2px solid #FFD700; /* Highlight underline on focus */
}

.auth-links {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
}

.auth-links a {
    text-decoration: none;
    color: black;
    margin: 0 5px;
}

.auth-links span {
    margin: 0 5px;
    color: black;
}


div.outer{
    /* display: grid; */
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: repeat(15,1fr);
    background-color: white;
    /* height: 100%; */
    width: 100%;
}
.inner-left{
    /* grid-area: 2/1/16/6; */
    background-color: white;
    border-radius: 20px;
    margin: 10px;
}
/* .inner-middle{
    grid-area: 2/6/16/9;
    background-color:rgba(32, 35, 35, 0.618);
    border-radius: 20px;
    margin: 10px;
    margin-left: 0px;
} */

.navbar{
    grid-area: 1/1/2/9;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #fff;
}

.footer {
    background-color: rgb(20, 19, 19);;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section h4 {
    margin: 0;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover  {
    text-decoration: underline;
    filter: drop-shadow(0 0 10px #fffdef);
}

.follow-us {
    display: flex;
    gap: 15px;
    align-items: center;
}

.follow-us img {
    width: 30px;
    height: 30px;
}

.language-select select {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px;
    cursor: pointer;
}

.copyright {
    text-align: center;
    color: #000000;
    background-color: #FFD700;
}

.shows,.movies,.genres{
  text-decoration: none;
  color: black;
}
 /* style for inner left div */

 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
  }
  
  .carousel-container {
    padding: 20px;
  }
  
  h2 {
    margin-bottom: 10px;
  }
  
  .carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding-bottom: 10px;
  }
  
  .carousel-item-i {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 250px; /* Fixed width for consistency */
    text-align: center;
  }
  
  .carousel-item-i img {
    width: 100%; /* Ensure image fills its container */
    height: 300px; /* Fixed height for all images */
    object-fit: cover; /* Maintain aspect ratio, crop if necessary */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .carousel-item-i p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #333;
  }
  
  .carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for modern browsers */
  }

  /* #sideBox {
    position: fixed;
    top: 0;
    right: -800px;
    width: 600px;
    height: 100%;
    background: white;
    color: black;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding: 20px;
    transition: right 0.3s ease;
    border-radius: 50px;

  }

  #sideBox.open {
    right: 0;
  }

  #sideBox h3 {
    margin-top: 0;
  }

  #closeBox {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: red;
    background-color: white;
  } */