#curr_image {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

#curr_image .image {
  text-align: center;
  width: 100%;
}

#curr_image .img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 6px;
  margin: 10px 0;
  object-fit: contain;
}

#curr_image .image_info {
  margin-top: 10px;
}

#curr_image .title {
  font-size: 24px;
  font-weight: bold;
  margin: 5px 0;
  color: #333;
}

#curr_image .author {
  font-size: 16px;
  color: #777;
  margin: 0;
}

#curr_image .actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

#curr_image .actions .icon {
  padding: 8px 16px;
  border: 2px solid #3c3d3f;
  background-color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#curr_image .actions .icon:hover {
  background-color: #3c3d3f;
  color: white;
  transform: scale(1.05);
}