/* Medhabiyan Study Planner - Dashboard Styles (v1.1.0)
-------------------------------------------------------*/

:root {
  --msp-primary: #13293b;
  --msp-accent: #4d96ff;
  --msp-success: #16a34a;
  --msp-light: #f9fafb;
}

/* ✅ Filter Bar + View Switch */
.msp-filter-bar, .msp-view-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.msp-btn.small {
  padding: 4px 8px;
  font-size: 12px;
  background: var(--msp-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
.msp-btn.small:hover {
  background: var(--msp-accent);
}

.hidden {
  display: none;
}

/* ✅ Daily / List Cards */
.msp-day-card {
  background: #fff;
  border-left: 5px solid var(--msp-primary);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}
.msp-day-card:hover {
  transform: translateY(-2px);
}

/* ✅ Progress Bar */
.progress {
  background: #e8ecf1;
  border-radius: 4px;
  overflow: hidden;
  height: 8px;
  margin-top: 6px;
}
.progress .fill {
  background: var(--msp-accent);
  height: 100%;
  transition: width 0.5s ease;
}

/* ✅ Quote Section */
.msp-quote-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.msp-quote-box {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 20px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}
.msp-quote-box:hover {
  transform: translateY(-3px);
}

.msp-quote-box h3 {
  font-size: 18px;
  color: var(--msp-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.msp-quote-box blockquote {
  font-size: 16px;
  color: #222;
  font-style: italic;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.msp-quote-box .author {
  font-size: 14px;
  text-align: right;
  color: #555;
  font-weight: 500;
}

/* ✅ Quote Type Colors */
.msp-quote-box.motivation {
  border-left: 5px solid var(--msp-accent);
}
.msp-quote-box.islamic {
  border-left: 5px solid var(--msp-success);
}
.msp-quote-box.progress-based {
  border-left: 5px solid #fbbf24;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .msp-quote-section {
    flex-direction: column;
  }
  .msp-quote-box {
    flex: 1 1 100%;
  }
}
