header {
  background-color: #333;
  padding: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease-in-out;
  padding-top: 10px;
}

  nav {
    text-align: right;
    margin-right: 20px;
    margin-top: 3px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 20;
    direction: rtl;
  }
  
  nav ul li {
    display: inline-block;
    margin-left: 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Adjust the font size to your desired value */
  }
  
  nav ul li a:hover {
    color: #bebebe9a;
  }
  
  .banner {
    background-image: url('https://e0.pxfuel.com/wallpapers/484/839/desktop-wallpaper-anime-aesthetic-laptop-red-aesthetic-anime.jpg');
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-top: 60px;
  }
  
  .banner h1 {
    font-size: 48px;
    margin: 0;
  }
  
  .content {
    padding: 40px;
  }
  
  .content h2 {
    font-size: 24px;
    margin-top: 0;
  }
  
  .content p {
    margin-bottom: 20px;
  }
  
  footer {
    background-color: #333;
    padding: 20px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
  }
  
  .logo {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
  }
  
  .logo img {
    height: 65px;
    border-radius: 100%;
  }

  /* ------------------------------------------------------- */

  .login {
    margin-left: 0%;
    margin-right: 25%;
  }

  .login-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .login-button:hover {
    background-color: #45a049;
  }
  
  .login-button:active {
    background-color: #3e8e41;
  }

  /* ------------------------------------------------------- */

  .register {
    margin-left: 0%;
    margin-right: 10px;
  }

  .register-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #af4c4c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .register-button:hover {
    background-color: #a04545;
  }
  
  .register-button:active {
    background-color: #8e3e3e;
  }

  /* ------------------------------------------------------- */

  .logout {
    margin-left: 0%;
    margin-right: 10px;
  }

  .loginout-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #af4c4c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .loginout-button:hover {
    background-color: #a04545;
  }
  
  .loginout-button:active {
    background-color: #8e3e3e;
  }



  /* ------------------------------------------------------- */
  .profile {
    margin-left: 0%;
    margin-right: 10px;
  }

  .profile-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .profile-button:hover {
    background-color: #45a049;
  }
  
  .profile-button:active {
    background-color: #3e8e41;
  }

  /* ------------------------------------------------------- */

  .welcomeuser {
    margin-left: 0%;
    margin-right: 17%;
  }

  .welcomeuser-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .welcomeuser-button:hover {
    background-color: #45a049;
  }
  
  .welcomeuser-button:active {
    background-color: #3e8e41;
  }
 
  /* ------------------------------------------------------- */
  


  .search-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 15%;
    margin-top: 14px;
  }
  
  .search-bar input[type="text"] {
    padding: 10px; /* Increased padding to make the search bar bigger */
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 5px;
    width: 250px; /* Added width to control the size of the search bar */
  }
  
  .search-bar button {
    padding: 8px 15px; /* Adjusted padding to match the search bar size */
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .search-bar button:hover {
    color: #0dd81d;
  }