.content-card {
  height: 100%;
  transition: transform 0.3s;
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.photo-container {
  height: 100%;
  padding: 0;
}
.photo-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}
.card-wrapper {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-title {
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.btn-primary {
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .photo-container img {
    border-radius: 8px 8px 0 0;
    height: 200px;
  }
  .content-card {
    border-radius: 0 0 8px 8px;
    border-left: 1px solid rgba(0, 0, 0, 0.125);
    border-top: none;
  }
}
#successMessage,
#errorMessage {
  display: none;
  margin-top: 10px;
}
#recordId {
  font-weight: bold;
}