/* Search and Sort Container */
.SearchAndShorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    padding: 10px;
    max-width: 700px;
    background-color: #fff;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Search Input */
  .search {
    width: 260px;

    padding: 5px 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-right: 10px;
  }
  
  .search:focus {
    border-color: #0abf53; /* Primary Green */
    box-shadow: 0 0 5px rgba(10, 191, 83, 0.5);
  }
  
  /* Sort Dropdown */
  .sort {
    width: 180px;
    padding: 5px 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .sort:focus {
    border-color: #2563eb; /* Primary Blue */
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .SearchAndShorting {
      flex-direction: column;
      align-items: stretch;
      padding: 15px;
    }
  
    .search {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .sort {
      width: 100%;
    }
  }