.content-container {
    margin-left: 12px;
    margin-right: 12px;
}

/* Table START*/
.curator-table-container {
  background-color: #f9f9fb; /* Subtle background shift */
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}


table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px; /* Increased vertical separation */
}

th {
  padding: 12px 20px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid #e4e4e7;
  border-bottom: 1px solid #e4e4e7;
  transition: all 0.2s ease;
}

td:first-child {
  border-left: 1px solid #e4e4e7;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

td:last-child {
  border-right: 1px solid #e4e4e7;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

tr:hover td {
  border-color: #7E5BEF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(126, 91, 239, 0.08);
  z-index: 10;
}
/* Table END */

.description-container {
  display: flex;
  align-items: stretch; /* Ensures both sides are the same height */

  width: 100%;
}

.description-text-container {
  flex: 1; /* Takes up all available space except the 30% */
  padding: 1rem;
}

.description-image-container {
  flex: 0 0 40%;
}

.description-image-container img {
  width:100%;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}

em, i {
  color: var(--primary)
}

strong, b {
  color: var(--secondary)
}

img {
  width: 50%;
  height: auto;
  display: block;
  border-radius: 15px;
}