.dashboard-tile {
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
}
.dashboard-tile:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
/* Dashboard Tiles */
.dashboard-tiles {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.dashboard-tile {
  border-radius: 10px;
  padding: 2rem 2.5rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  color: #fff;
}
.dashboard-tile.licenses {
  background: #2563eb;
}
.dashboard-tile.organizations {
  background: #059669;
}
.dashboard-tile.users {
  background: #f59e42;
}
.dashboard-tile.tracked-licenses {
  background: #7c3aed;
}
.dashboard-tile .dashboard-tile-count {
  font-size: 2.2rem;
  font-weight: 700;
}
.dashboard-tile .dashboard-tile-label {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
/* Reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4f6f8;
  color: #333;
}

/* Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background: #1f2933;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.sidebar-title {
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  background: #111827;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 0;
}

.sidebar-nav a {
  display: block;
  padding: 10px 16px;
  color: #d1d5db;
  text-decoration: none;
}

.sidebar-nav a:hover {
  background: #374151;
  color: #fff;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid #374151;
}

.sidebar-footer a {
  color: #fca5a5;
  text-decoration: none;
}

/* Main content */
.main-content {
  flex: 1;
  padding: 24px;
}

/* Page header */
.page-header {
  margin-bottom: 20px;
}

.page-header h1 {
  margin: 0;
  font-size: 24px;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  border: none;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary {
  background: #6b7280;
}

.btn-danger {
  background: #dc2626;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

th {
  background: #f9fafb;
  font-weight: 600;
}

tr:hover {
  background: #f1f5f9;
}

/* Actions */
.actions a {
  margin-right: 8px;
}
