/* ================= DASHBOARD LAYOUT ================= */

.dashboard-wrapper {
  min-height: calc(100vh - 120px);
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

/* ================= LOGOUT ================= */

.logout-btn {
  padding: 10px 18px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.logout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(239,68,68,0.35);
}

/* ================= GRID ================= */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* ================= CARDS ================= */

/* ================= DASHBOARD CARDS ================= */

.account-card {
  border-left: 4px solid #22c55e;
}

.dash-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.dash-card p {
  font-size: 14px;
  color: #64748b;
}

/* ================= ACCOUNT STATUS ================= */

.account-card {
  border-left: 4px solid #22c55e;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* ================= USER ID ================= */

.uid-block {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
}

.uid-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}

.uid-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #0f172a;
  word-break: break-all;
}

/* ================= LOADING ================= */

.loading {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  margin-top: 100px;
}

/* ================= COMMAND DASHBOARD ================= */

.command-dashboard{
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px;
}

.command-header h1{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status{
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-block;
}

.command-box{
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  overflow: hidden;
}

.command{
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.command:last-child{
  border-bottom: none;
}

.command:hover{
  background: #f6f7f8;
}

.command:active{
  transform: scale(0.998);
}

.command.disabled{
  color: #aaa;
  cursor: not-allowed;
}

.command.disabled:hover{
  background: transparent;
}

.command-footer{
  margin-top: 44px;
}

.command-footer h3{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
}

.command-footer ul{
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.command-footer li{
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.command-footer li:last-child{
  border-bottom: none;
}
