/* ═════════════════════════════════════════════════════
   DASHBOARD SCREEN STYLES
   ═════════════════════════════════════════════════════ */

#dashboard-screen {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.dashboard-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-yellow);
  padding: 1rem;
  padding-top: 0.5rem;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 1.5rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.header-top h1 {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
}

.header-user {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header-user p {
  margin: 0;
}

.header-user p:first-child {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CONTENT */
.dashboard-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 1rem 1rem;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.stat-icon {
  font-size: 2rem;
  min-width: 3rem;
}

.stat-info {
  flex: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
}

/* SECTION */
.section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

/* ACTIONS GRID */
.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.action-btn {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.05));
  border: 1px solid var(--border-yellow);
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.action-btn:active {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.3), rgba(234, 179, 8, 0.1));
  transform: scale(0.95);
}

.action-icon {
  font-size: 2.5rem;
}

/* MENU */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.menu-item:active {
  background: rgba(234, 179, 8, 0.1);
  border-color: var(--border-yellow);
}

.menu-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.menu-text {
  flex: 1;
  text-align: left;
}

.menu-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
}

/* PLACEHOLDER SCREEN */
#placeholder-screen {
  display: flex;
  flex-direction: column;
}

.screen-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-radius: 0 0 1.5rem 1.5rem;
}

.screen-header h1 {
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
  text-align: center;
}

.btn-back {
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  font-weight: 700;
}

.placeholder-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.placeholder-content h2 {
  margin: 0;
  color: var(--text-primary);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .action-btn {
    padding: 2rem 1rem;
  }

  .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .menu-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .menu-text {
    font-size: 0.875rem;
  }

  .menu-arrow {
    display: none;
  }
}
