.dashboard {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 24px;
  }
  
  .dashboard-header {
    margin-bottom: 32px;
  }
  
  .dashboard-subtext {
    color: #555;
  }
  
  .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
  }
  
  .card h2 {
    margin-bottom: 12px;
  }
  
  .api-key-box {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
  }
  
  .api-key-box code {
    font-size: 13px;
    word-break: break-all;
  }
  
  .hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
  }
  
  .warning {
    color: #b91c1c;
  }
  
  .info-list,
  .action-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .info-list li,
  .action-list li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .logout-form {
    margin-top: 40px;
  }
  
  .btn-danger {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .btn-danger:hover {
    background: #b91c1c;
  }
  
  .dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px;
  }
  
  .dashboard-header h1 {
    margin-bottom: 4px;
  }
  
  .dashboard-subtext {
    color: #6b7280;
    margin-bottom: 32px;
  }
  
  .dashboard-section {
    margin-bottom: 40px;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  
  .app-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
  }
  
  .app-card h3 {
    margin-bottom: 6px;
  }
  
  .muted {
    color: #6b7280;
    font-size: 14px;
  }
  
  .app-meta {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 13px;
  }
  
  .status.active {
    color: #16a34a;
  }
  
  .status.disabled {
    color: #dc2626;
  }
  
  .link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
  }
  
  .link:hover {
    text-decoration: underline;
  }
  
  .account-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    display: grid;
    gap: 8px;
  }
  
  .empty-state {
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    color: #6b7280;
  }
  
  .btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-sm {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .btn-danger {
    background: #dc2626;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
  }
  
  .logout-form {
    margin-top: 24px;
  }

  .app-actions {
    margin-top: 12px;
    display: flex;
    gap: 12px;
  }
  
  .btn-link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-link:hover {
    text-decoration: underline;
  }
  
    