.jc-dashboard {
  font-family: 'Inter', sans-serif;
  max-width: 960px;
  margin: auto;
  padding: 20px;
  background: #fff6fa;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.jc-menu {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.jc-tab {
  background: #ffd9ec;
  color: #2c2c2c;
  border: none;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.jc-tab.active, .jc-tab:hover {
  background: #ff71b2;
  color: #fff;
}

.jc-content .jc-panel {
  display: none;
}

.jc-content .jc-panel.active {
  display: block;
}



