<style>
    .content {
  width: 1000px;
  height: auto;
  margin: 0px auto;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  background-color: white;
}

.blog {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-box input[type="text"] {
  width: 400px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.search-box button {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #67c6cb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.back {
    background-color: #67c6cb;
  color: white;
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #67c6cb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.back:hover {
    background-color: white;
    color: #67c6cb;
  }

.blog-content {
  /* Add styles for the blog content container */
}

.blog-post {
  margin-bottom: 10px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.blog-post:hover {
  background-color: #ccc;
}
.search-box button:hover {
    background-color: whitesmoke;
    color: #023b48;
  }

/* Media queries for mobile mode */
@media (max-width: 767px) {
  .content {
    width: 100%;
  }

  .blog {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-box input[type="text"] {
    width: 80%;
  }

  .search-box button {
    padding: 5px 10px;
  }
}

.body-pet-details{
  background-color: white;
  margin: auto;
  margin-top: 0;
  margin-bottom: 20px;
  width: 80%;
  border-radius: 20px;
  padding: 40px;
  font-size: 12px;
  text-align: center;
  word-wrap: break-word;
}


/* Mobile Views */

.blog-post,.blog-post-header{
  overflow: none;
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  .blog-post,.blog-post-header{
    overflow: auto;
  }
  .user-profiles{
      margin-left: 12px;
  }
  .body-header{
      margin-bottom: 10px;
  }
  .login-body{
      margin-top: 25%;
      width: 90%;
  }
  .sign-body{
      margin-top: 18%;
      width: 90%;
  }
  .listing-body-content p{
      font-size: 12px;
  }
  .listing-body-content h2{
      font-size: 18px;
  }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .user-profiles{
      margin-left: 12px;
  }
  .body-header{
      margin-bottom: 10px;
  }
  .login-body{
      margin-top: 25%;
      width: 90%;
  }
  .sign-body{
      margin-top: 18%;
      width: 90%;
  }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .user-profiles{
      margin-left: 12px;
  }
  .body-header{
      margin-bottom: 10px;
  }
  .login-body{
      margin-top: 25%;
      width: 90%;
  }
  .sign-body{
      margin-top: 18%;
      width: 90%;
  }
}
.body-header{
  text-align:left; 
  font-weight:bold; 
  font-size: 15px; 
  padding:0; 
  margin:0;
  color:black;
}
.form-label {
font-weight: bold;
color:black;
}

.form-control {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 10px;
}
.main-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  border-radius: 20px;
  padding: 10px 18px;
  background-color: #67c6cb;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.25px;
}

.main-button:hover {
  background-color: transparent;
  color: #67c6cb;
  outline: 1px solid #67c6cb;
}
hr {
  width: 90%; /* Adjust the width as desired */
  margin-left: 5%; /* Optional: Adjust the horizontal position */
  margin-right: 5%;
  border-style: solid;
  border-width: 2px;
  border-color: black; /* Optional: Adjust the horizontal position */
}

.menu_main{
  display:block !important; 
  width:100%;
}
.custome_menu ul{
  display: flex;
  width: 100% !important;
  flex-wrap:nowrap;
  overflow: auto;
}
ul li{
  white-space:nowrap;
}
.custome_menu{
  width:100% !important;
}
    </style>