/* planner.css – Extensie pentru UI Planner premium */

.planner-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.planner-tab {
  background: #181e2a;
  color: #ffd700;
  border-radius: 1.1rem;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  font-size: 1.07rem;
  border: 1px solid #ffd70088;
  cursor: pointer;
  transition: background 0.23s, color 0.23s;
}
.planner-tab.active,
.planner-tab:hover {
  background: linear-gradient(90deg, #ffd700 60%, #f7e57c 100%);
  color: #222;
  border: 1px solid #ffd700;
}

.planner-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.planner-weekday {
  color: #f4d06f;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.3em;
}
.planner-day-col {
  background: #181e2a;
  min-height: 140px;
  border-radius: 1rem;
  box-shadow: 0 2px 12px #ffd7000c;
  padding: 0.6rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.planner-task {
  background: #24274c;
  color: #fff;
  border-left: 4px solid #ffd700;
  border-radius: 0.65rem;
  padding: 0.6rem 0.7rem;
  font-size: 0.98rem;
  box-shadow: 0 0 8px #ffd70016;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}
.planner-task .task-label {
  font-weight: 500;
  color: #ffd700;
}
.planner-task .task-ai {
  background: #1e4e88;
  color: #aee4ff;
  border-radius: 0.5em;
  font-size: 0.75em;
  padding: 0.1em 0.5em;
  margin-left: 0.7em;
}
.planner-progress-bar {
  width: 100%;
  height: 9px;
  background: #232342;
  border-radius: 6px;
  margin: 0.25em 0 0.7em 0;
  overflow: hidden;
  box-shadow: 0 0 5px #ffd7002c;
}
.planner-progress-inner {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 6px;
  transition: width 0.4s;
}
.planner-goals-card {
  background: #191b28;
  border: 1.2px solid #ffd70088;
  border-radius: 1.2rem;
  padding: 1.2rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px #ffd7000c;
}
.planner-goal-title {
  font-size: 1.13rem;
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 0.4em;
}
.planner-goal-progress-label {
  color: #bda033;
  font-size: 0.93rem;
  margin-left: 0.3em;
}
.planner-ai-box {
  background: #112044;
  border: 1.2px solid #39ff14;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  color: #bfffbf;
}
@media (max-width: 900px) {
  .planner-week-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}
@media (max-width: 600px) {
  .planner-week-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .planner-tabs {
    flex-direction: column;
    gap: 0.2rem;
    align-items: stretch;
  }
}

.scores-bar-premium { display: none !important; }
