/* Reset default margin and padding for the body and header */
body, header, nav, ul, li {
    margin: 0;
    padding: 0;
  }
  
  /* Basic styling for the header */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    color: #000000;
    padding: 10px 20px;
  }
  
  /* Styling for the logo */
  .logo {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
  }
  
  /* Styling for the navigation links */
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  
  /* Styling for the search input and button */
  .search {
    display: flex;
    align-items: center;
  }
  
  #search-input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; /* Full width input on desktop */
    max-width: 300px; /* Limit the maximum width for readability */
  }
  
  #search-button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #033eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Media query for mobile responsiveness */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start; /* Align items to the left on mobile */
      padding: 20px; /* More padding for better spacing on mobile */
    }
  
    nav {
      margin-top: 10px; /* Add spacing between navigation and search on mobile */
      text-align: left; /* Align navigation to the left on mobile */
    }
  
    #search-input {
      max-width: 100%; /* Make input occupy full width on mobile */
    }
  }
  