@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

.header-bg {
    background-image: url(../images/grass.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 420px;
    height: 100%;
}

.app-header {
    padding: 10px ; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0px 10px 30px 0px #dfdfdf00;
}
.app-title {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 5px 0px;
    color: #fff;
}

.app-logo {
    width: 100%;
    max-width: 100px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

/* Container styling */
.search-container {
    position: relative;
    width: 100%;
    max-width: 395px;
    margin: 1rem 0.5rem;
}

/* Input styling */
.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.search-input:focus {
  border-color: #007bff;
}

/* Clear button styling */
.clear-button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #555;
  display: none;
}

.clear-button:hover {
  color: #d00;
}

@media (min-width: 600px) {
    .page-content-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* Responsive tweaks */
@media (max-width: 600px) {
    

  .search-input {
    font-size: 0.95rem;
    padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  }

  .clear-button {
    font-size: 0.9rem;
  }
  
  
}
