
.creator-main-container{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-start;
  margin-left: 1rem;
  margin-right: 1rem;
}

@media only screen and (min-width: 1200px){
  .creator-main-container{
    max-width: 1180px;
  }  
}

.creator-main-container aside{
  /* flex-grow: 1; */
  flex-basis: 180px;
}

.creator-main-container section{
  /* flex-grow: 6; */
  /* flex-basis: ; */
  flex-basis: 1180px;
}

.tab{
  padding: .4rem 2rem;
  background-color: #ebeff6;
  /* border-top-left-radius: .8rem;
  border-top-right-radius: .8rem; */
}

.selected_tab{
  /* background-color: #ebeff6;
  border-top-left-radius: .8rem;
  border-top-right-radius: .8rem; */
  border-bottom: 4px solid var(--primary-color);

}

.menu-header{
  font-size: 1.1rem;
  font-weight: 500;
}

/* AI Draft Sidebar Loading Spinner */
turbo-frame#ai_draft_sidebar[busy] {
  position: relative;
  pointer-events: none;
}

turbo-frame#ai_draft_sidebar[busy]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 40;
  border-radius: 0.75rem;
}

turbo-frame#ai_draft_sidebar[busy]::before {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #4f46e5; /* Indigo color */
  border-radius: 50%;
  animation: sidebar-spin 0.8s linear infinite;
  z-index: 50;
}

@keyframes sidebar-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}