.dogs-show-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.main-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  margin-right: 24px;
}

.dog-info {
  max-width: 400px;
  width: 100%;
}

.dog-name,
.dog-price {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.dog-details {
  font-size: 1.25rem;
  text-align: left;
  margin-top: 50px;
  margin-left: 50px;
}

.dog-detail-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.dog-detail-row .label {
  min-width: 80px;
  font-weight: bold;
}

.dog-detail-row .value {
  flex: 1;
  word-break: break-word;
}

.back-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #eee;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.back-button:hover {
  background-color: #ddd;
}

.dog-description-block {
  width: 100%;
  max-width: 1000px;
  padding: 1rem 2rem;
}

.dog-description-block .label {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.dog-description-block .value {
  font-size: 1.25rem;
  word-break: break-word;
}