@import './theme.css';

.parent-dashboard {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #60a5fa 25%, #93c5fd 50%, #1d4ed8 75%, #3b82f6 100%);
  font-family: var(--body-font);
}

/* ===========================
   NAVBAR SECTION (Scrolls Away)
   ========================== */

/* Header with Logo and Stars - This section scrolls naturally with the page */
.parent-dashboard .navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  /* NO position: sticky - this allows it to scroll away */
}

.parent-dashboard .navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.parent-das.hw-page .feedback-block {
  margin-bottom: 12px;
}

.parent-dashboard .navbar-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.parent-dashboard .navbar-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.parent-dashboard .navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parent-dashboard .navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.parent-dashboard .navbar-stars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.3);
  border: 3px solid #fbbf24;
  transition: all 0.3s ease;
}

.parent-dashboard .navbar-stars:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.4);
}

.parent-dashboard .navbar-stars svg {
  width: 24px;
  height: 24px;
  color: #eab308;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.parent-dashboard .navbar-stars span {
  font-size: 18px;
  font-weight: 800;
  color: #92400e;
}

.parent-dashboard .navbar-profile {
  display: flex;
  padding: 6px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.2);
  border: 3px solid rgba(59, 130, 246, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.parent-dashboard .navbar-profile:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.parent-dashboard .navbar-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  font-size: 20px;
  font-weight: 800;
}

/* ===========================
   MAIN CONTAINER
   ========================== */

/* Main Container */
.parent-dashboard .dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ===========================
   DASHBOARD HEADER (Scrolls Normally)
   ========================== */

/* Header Section - Beautiful but NOT sticky */
.parent-dashboard .dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.98) 0%, rgba(59, 130, 246, 0.95) 100%);
  backdrop-filter: blur(10px);
  /* REMOVED position: sticky - now scrolls naturally */
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
  border: 3px solid rgba(147, 197, 253, 0.3);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .parent-dashboard .dashboard-header {
    flex-direction: column;
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .parent-dashboard .dashboard-title {
    font-size: 1.75rem;
  }
}

.parent-dashboard .dashboard-header-left {
  flex: 1;
}

.parent-dashboard .dashboard-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.parent-dashboard .dashboard-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
}

.parent-dashboard .dashboard-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.parent-dashboard .btn-manage {
  padding: 14px 28px;
  background: white;
  color: #2563eb;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.parent-dashboard .btn-manage:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.parent-dashboard .btn-view-child {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
}

.parent-dashboard .btn-view-child:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Grid Layout */
.parent-dashboard .dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.parent-dashboard .main-content-centered {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

/* Card Base Styles */
.parent-dashboard .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(219, 234, 254, 0.5));
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  border: 3px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.parent-dashboard .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.parent-dashboard .section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parent-dashboard .section-icon {
  width: 28px;
  height: 28px;
  color: #3b82f6;
}

/* Profile Card - Table Layout */
.parent-dashboard .profile-card {
  padding: 2.5rem;
}

.parent-dashboard .profile-details-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.parent-dashboard .avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  flex-shrink: 0;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.parent-dashboard .profile-info {
  flex: 1;
  min-width: 0;
}

.parent-dashboard .profile-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parent-dashboard .profile-details {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(147, 197, 253, 0.3);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  margin-bottom: 1.5rem;
}

.parent-dashboard .profile-details>div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  font-size: 1rem;
  transition: all 0.2s ease;
  color: #1e293b;
  font-weight: 600;
}

.parent-dashboard .profile-details>div:last-child {
  border-bottom: none;
}

.parent-dashboard .profile-details>div:hover {
  background: rgba(219, 234, 254, 0.3);
}

.parent-dashboard .profile-details>div>span:first-child {
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.parent-dashboard .btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.parent-dashboard .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Chart Card */
.parent-dashboard .chart-card {
  padding: 2.5rem;
}

.parent-dashboard .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.parent-dashboard .chart-select {
  padding: 12px 20px;
  border: 3px solid #93c5fd;
  border-radius: 16px;
  background: white;
  color: #1e293b;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.parent-dashboard .chart-select:hover {
  border-color: #60a5fa;
  background: #dbeafe;
}

.parent-dashboard .line-chart-container {
  background: rgba(248, 250, 252, 0.6);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(147, 197, 253, 0.3);
}

.parent-dashboard .line-chart {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.parent-dashboard .line-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.parent-dashboard .line-chart-x-axis {
  display: flex;
  justify-content: space-between;
  padding: 1rem 80px 0;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.parent-dashboard .x-axis-label {
  text-align: center;
}

.parent-dashboard .line-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.4);
  border-radius: 12px;
  margin-top: 1rem;
}

.parent-dashboard .legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}

.parent-dashboard .legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.parent-dashboard .legend-label {
  white-space: nowrap;
}

.parent-dashboard .chart-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Skills Breakdown - Table Style */
.parent-dashboard .skills-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.parent-dashboard .skill-card {
  padding: 1.75rem 2rem;
  background: white;
  border-bottom: 2px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 2fr 1fr 120px;
  align-items: center;
  gap: 2rem;
}

.parent-dashboard .skill-card:first-child {
  border-radius: 16px 16px 0 0;
  border-top: 2px solid rgba(147, 197, 253, 0.3);
}

.parent-dashboard .skill-card:last-child {
  border-radius: 0 0 16px 16px;
  border-bottom: 2px solid rgba(147, 197, 253, 0.3);
}

.parent-dashboard .skill-card:hover {
  background: rgba(219, 234, 254, 0.4);
  border-bottom-color: rgba(147, 197, 253, 0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.parent-dashboard .skill-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.parent-dashboard .skill-header>div:first-child {
  font-weight: 800;
  color: #1e293b;
  font-size: 1.125rem;
}

.parent-dashboard .skill-level {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.parent-dashboard .skill-bar {
  height: 12px;
  background: rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  overflow: hidden;
  flex: 1;
}

.parent-dashboard .skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 999px;
  transition: width 0.6s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.parent-dashboard .skill-score {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
  min-width: 80px;
}

/* Progress by Feature - Enhanced Cards */
.parent-dashboard .progress-by-feature {
  padding: 2.5rem;
}

.parent-dashboard .feature-progress-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parent-dashboard .feature-progress-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(147, 197, 253, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.parent-dashboard .feature-progress-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.5);
}

.parent-dashboard .feature-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.parent-dashboard .feature-title-section {
  flex: 1;
}

.parent-dashboard .feature-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parent-dashboard .feature-progress-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.parent-dashboard .stat-badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.parent-dashboard .stat-badge.completed {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 2px solid #6ee7b7;
}

.parent-dashboard .stat-badge.score {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border: 2px solid #93c5fd;
}

.parent-dashboard .feature-completion-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.parent-dashboard .completion-percentage {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parent-dashboard .feature-progress-bar-container {
  margin-bottom: 1.5rem;
}

.parent-dashboard .feature-progress-bar {
  height: 14px;
  background: rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.parent-dashboard .feature-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 999px;
  transition: width 0.6s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.parent-dashboard .feature-progress-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: rgba(248, 250, 252, 0.6);
  padding: 1.25rem;
  border-radius: 12px;
}

.parent-dashboard .progress-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.parent-dashboard .detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.parent-dashboard .detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.parent-dashboard .detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.parent-dashboard .detail-value {
  font-size: 1rem;
  font-weight: 800;
  color: #1e293b;
}

.parent-dashboard .no-progress-message {
  text-align: center;
  padding: 3rem;
  background: rgba(248, 250, 252, 0.6);
  border-radius: 16px;
  border: 2px dashed rgba(147, 197, 253, 0.5);
}

.parent-dashboard .no-progress-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.parent-dashboard .no-progress-message p {
  font-size: 1.125rem;
  color: #475569;
  font-weight: 600;
  margin: 0.5rem 0;
}

.parent-dashboard .no-progress-subtitle {
  font-size: 0.95rem;
  color: #64748b;
}

/* Recent Activities - Enhanced Table */
.parent-dashboard .recent-activities {
  padding: 2.5rem;
}

.parent-dashboard .table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 2px solid rgba(147, 197, 253, 0.3);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.parent-dashboard table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
}

.parent-dashboard thead {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.8), rgba(191, 219, 254, 0.6));
  position: sticky;
  top: 0;
  z-index: 10;
}

.parent-dashboard th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 800;
  color: #1e293b;
  font-size: 0.95rem;
  border-bottom: 3px solid rgba(147, 197, 253, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.parent-dashboard th:first-child {
  border-radius: 16px 0 0 0;
}

.parent-dashboard th:last-child {
  border-radius: 0 16px 0 0;
}

.parent-dashboard td {
  padding: 1.25rem 1.5rem;
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.parent-dashboard tbody tr {
  transition: all 0.2s ease;
}

.parent-dashboard tbody tr:hover {
  background: rgba(219, 234, 254, 0.3);
}

.parent-dashboard tbody tr:last-child td {
  border-bottom: none;
}

.parent-dashboard tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.parent-dashboard tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

.parent-dashboard td[colspan] {
  text-align: center;
  padding: 3rem;
  color: #64748b;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .parent-dashboard .dashboard-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .parent-dashboard .dashboard-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .parent-dashboard .skill-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .parent-dashboard .skill-score {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .parent-dashboard .navbar-container {
    padding: 0 1rem;
  }

  .parent-dashboard .navbar-brand {
    display: none;
  }

  .parent-dashboard .dashboard-container {
    padding: 2rem 1rem;
  }

  .parent-dashboard .card {
    padding: 2rem;
  }

  .parent-dashboard .profile-details-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .parent-dashboard .profile-info {
    width: 100%;
  }

  .parent-dashboard .profile-details>div {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .parent-dashboard .profile-details>div>span:first-child {
    justify-content: center;
  }

  .parent-dashboard .dashboard-buttons {
    flex-direction: column;
  }

  .parent-dashboard .btn-manage,
  .parent-dashboard .btn-view-child,
  .parent-dashboard .btn-primary {
    width: 100%;
    text-align: center;
  }

  .parent-dashboard .line-chart-x-axis {
    padding: 1rem 60px 0;
    font-size: 0.8rem;
  }

  .parent-dashboard .table-wrapper {
    overflow-x: scroll;
  }

  .parent-dashboard th,
  td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .parent-dashboard .feature-progress-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .parent-dashboard .feature-progress-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .parent-dashboard .dashboard-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .parent-dashboard .card {
    padding: 1.5rem;
  }

  .parent-dashboard .navbar-stars span {
    font-size: 16px;
  }

  .parent-dashboard .navbar-stars svg {
    width: 20px;
    height: 20px;
  }

  .parent-dashboard .avatar {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

/* Layout Utilities */
.dashboard-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.flex-1 {
  flex: 1;
  min-width: 280px;
}

.button-group-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.full-width-mobile {
  width: auto;
}

@media (max-width: 768px) {
  .full-width-mobile {
    width: 100%;
  }
}

/* Button Variants */
.btn-secondary {
  padding: 12px 24px;
  background: white;
  color: #2563eb;
  border: 2px solid #ddd6fe;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #f3e8ff;
  border-color: #c084fc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* Report Specific Styles */
.btn-report {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid #d8b4fe;
  background: transparent;
  color: #9333ea;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-report.active {
  border-color: #9333ea;
  background: linear-gradient(to right, #f5f3ff, #fdf2f8);
  font-weight: 600;
}

.btn-report:hover:not(.active) {
  background: #f5f3ff;
  border-color: #c084fc;
}

/* Message Box */
.message-textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.2s;
}

.message-textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}