/* ==================================================
   ARTIST DASHBOARD
================================================== */
.cs-artist-dashboard {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.cs-artist-main {
  flex: 1;
  padding: 2rem;
}

/* Mobile Header */
.cs-mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .cs-artist-dashboard {
    flex-direction: column;
  }

  .cs-artist-main {
    padding-top: 80px;
  }

  .cs-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(15, 10, 26, 0.65);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .cs-mobile-logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cs-artist-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}