main.account-main {
  padding: 120px 20px 60px;
  max-width: 980px;
  margin: 0 auto;
}

.account-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 24px;
  margin-bottom: 20px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.account-grid-single {
  grid-template-columns: 1fr;
}

.account-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.account-input,
.account-select,
.account-button {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  padding: 12px;
}

.account-input:focus,
.account-select:focus {
  outline: none;
  border-color: #6366f1;
}

.account-button {
  border: none;
  background: #6366f1;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.account-button.secondary {
  background: #0f172a;
}

.account-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.account-header {
  margin-bottom: 20px;
}

.account-muted {
  color: #64748b;
}

.account-link {
  color: #4338ca;
  text-decoration: none;
  font-weight: 600;
}

.member-row,
.org-row,
.request-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  gap: 10px;
}

.member-row:last-child,
.org-row:last-child,
.request-row:last-child {
  border-bottom: none;
}

.account-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-status {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  background: #e2e8f0;
  color: #0f172a;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.account-table th,
.account-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.account-table th {
  color: #64748b;
  font-weight: 600;
}

.account-rental-filters .account-input {
  width: auto;
  min-width: 140px;
  max-width: 200px;
  flex: 0 1 auto;
}

.account-rental-filters .account-button {
  width: auto;
  align-self: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.tier-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-feature-table {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.feature-badge {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.feature-badge.available {
  background: #dcfce7;
  color: #166534;
}

.feature-badge.coming-soon {
  background: #e2e8f0;
  color: #475569;
}

@media (max-width: 768px) {
  .member-row,
  .org-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
