.arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(30, 41, 59, 0.9);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 4px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ccc;
}

/* CSS cho hình tròn avatar */
.avatar {
  width: 80px;
          height: 40px;
          border-radius: 50%;
          overflow: hidden;
          margin: 0 auto;
      }

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-button {
    background-color: #4B70F5; 
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    text-decoration: none;
    font-size: 15px;
}

.filter-button:hover {
    background-color: #45a049; 
}


.section-divider {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 20px 0;
  position: relative;
}

.search-form {
  margin-right: 10px;
  position: relative;
}

.search-form input[type="text"] {
  border: 1px solid rgba(255, 255, 255, 0.5); 
  padding: 7px 50px;
  border-radius: 15px;
  font-size: 15px;
  background-color: #1a202c;
  color: #000;
  color: #fff; 
}
.search-button {
  position: absolute;
  right: 5px; 
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5); 
}

.search-button i {
  color:	#fff;
}
.sap-chieu {

  top: 3px;
  left: 4px;
  position: absolute;
  background: rgba(216, 15, 22, .6);
  color: #eee;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 0.25rem;
}


.image-container {
  position: relative;
  display: inline-block;
}

@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

nav{
display: flex;
justify-content: space-around;
align-items: center;
font-family: 'Poppins', sans-serif;
}

.nav-links{
display: flex;
justify-content: space-around;
width: 50%;
}

.nav-links li{
list-style:none;

}
.nav-links a{
color: rgb(226,226,226);
text-decoration: none;
letter-spacing: 3px;
font-weight:bold;
font-size:14px;
}

.burger{
display:none;
cursor: pointer;
}

.burger div{
width:25px;
height:3px;
background-color:#fff;
margin: 5px;
transition: all 0.3s ease

}

@media screen and (max-width:1024px){
.nav-links{
  width:60%;
}
}

@media screen and (max-width:768px){
body{
  overflow-x: hidden;
}
.nav-links{
  position:absolute;
  right: 0px;
  height:92vh;
  top: 8vh;
  background-color:rgba(30, 41, 59, 0.9);
  display:flex;
  flex-direction: column;  
  align-items: center;
  width:50%;
  transform: translateX(-200%);
  transition: transform 0.5s ease-in;
}
.nav-links li{
  opacity: 0;
}
.burger{
  display:block;
  margin-left: -100px;
}
}

.nav-active{
transform: translateX(-100%);
}

@keyframes navLinkFade{
from{
  opacity:0;
  transform: translateX(50px);
}
to{
  opacity: 1;
  transform: translateX(0px);
}
}

.toggle .line1{
transform: rotate(-40deg) translate(-5px,6px);
}

.toggle .line2{
transform: rotate(90deg) translate(0px,0px);
}

.toggle .line3{
transform: rotate(35deg) translate(-5px,-6px);
}