/* Dedicated Styles for Dashboard Admin Studio (admin.html) - Premium Neo Brutalism */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.admin-nav-btn {
  width: 100%;
  text-align: left;
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.admin-nav-btn.active {
  background: var(--neo-yellow) !important;
  box-shadow: 5px 5px 0 #000;
  transform: translate(-1px, -1px);
}

.admin-tab-content {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.admin-tab-content.active {
  display: flex;
}

.btn-action-sm {
  padding: 4px 10px;
  border: 2px solid #000;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.1s ease;
}

.btn-action-sm:hover {
  transform: translate(-1px, -1px);
}

/* Beautiful Account Cards Grid */
.account-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}

.account-card {
  background: #ffffff;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.account-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.account-card.active {
  border-color: #000;
}

.account-card.inactive {
  background: #f8fafc;
  opacity: 0.85;
}

.account-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #000;
  padding-bottom: 10px;
}

.account-title-badge {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.account-status-pill {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 2px 2px 0 #000;
  text-transform: uppercase;
}

.account-status-pill.active {
  background: var(--neo-green);
  color: #000;
}

.account-status-pill.inactive {
  background: #ff4757;
  color: #fff;
}

.account-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
}

.account-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.detail-label {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-val {
  font-weight: 800;
  color: #000;
}

.detail-val.time {
  font-size: 11px;
  font-family: monospace;
}

.detail-link {
  color: #0984e3;
  font-weight: 700;
  font-family: monospace;
  text-decoration: underline;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-card-footer {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-acc-action {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
}
