.gig-page {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.gig-page__image {
  width: 50%;
  height: auto;
  object-fit: contain;
  padding: 1rem;
}

.gig-page__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 4rem;
}

.gig-page__title {
  text-transform: uppercase;
  font-size: 3rem;
}

.gig-page__info {
  opacity: 0.8;
}

.gig-page__price {
  font-size: 1.25rem;
  line-height: 1.8rem;
}

.gig-page__price span {
  margin-left: 3rem;
}

.gig-page__price-table {
  border-collapse: collapse;
  width: 100%;
}

.gig-page__price-table td {
  border: 1px solid var(--oa-text-light);
  padding: 0.5rem;
  font-size: 1rem;
}

.gig-page__tickets-status {
  color: var(--oa-pink);
  font-size: 1.25rem;
}

.gig-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#approval-section,
#close-section,
#export-section {
  margin: 2rem;
  background-color: var(--oa-pink);
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gig-page__description {
  max-width: 500px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.support-buttons {
  display: flex;
  gap: 0.3rem;
  justify-content: left;
  align-items: left;
}

.gig-page__support-request__details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

ul {
  margin-left: 20px;
}

@media screen and (max-width: 900px) {
  .gig-page {
    flex-direction: column;
  }

  .gig-page__image {
    max-width: 35rem;
    margin: 0 auto;
  }

  .gig-page__details {
    padding: 2rem;
  }
}
