.site-content-inner {
    justify-content: center;
}

.pet-profile-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 800px;
    margin: 0 auto;
}

.owner-info {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.owner-info h3 {
    margin-top: 0;
    color: #005aa7;
}

.pet-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.pet-info img {
    max-width: 300px;
}

.pet-info h3 {
    color: #000000;
    margin-top: 0;
}

.custom-form-wrap input {
  width: 100%;
}

@media (max-width: 768px) {
  .pet-search-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    background-image: none;
    background-color: #ecf1f8;
    text-align: center;
    height: auto;
  }

  .microchip-search-form,
  .pet-search-hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 30px 0 0 0;
    text-align: center;
  }

  .pet-search-input {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .microchip-search-form input[type="text"] {
    height: 30px;
    position: relative;
    overflow: hidden;
  }

  #microchip-input-hero {
    width: 100%;
  }

  #microchip-search-btn-hero {
    width: 100%;
    border-radius: 8px;
  }
  .pet-search-hero-inner .microchip-search-form button {
    top: 65px;
    height: 25px;
    right: 3px;
  }
  .pet-profile-container {
    width: 100%;
  }
}