.popup-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  max-width: 90%;
  width: 600px; /* Adjusted width for better horizontal layout */
  display: flex;
  flex-direction: row;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  padding: 0.5rem;
  cursor: pointer;
}

.popup-image {
  width: 50%; /* Adjusted width to fit side-by-side */
  height: auto;
  border-right: 1px solid #ddd;
  margin-right: 20px;
}

.popup-details {
  width: 50%; /* Adjusted width to fit side-by-side */
  padding-top: 10px;
}

.popup-details h2 {
  margin: 0;
  font-size: 24px;
}

.popup-details p {
  margin: 10px 0;
  font-size: 16px;
}

@media (max-width: 600px) {
  .popup-content {
    flex-direction: column;
    width: 90%;
  }

  .popup-image,
  .popup-details {
    width: 90%;
    margin-right: 0;
    border-right: none;
  }

  .popup-details h2 {
    font-size: 20px;
  }

  .popup-details p {
    font-size: 14px;
  }
}
