body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.dashboard-header {
  height: 40px;
  background-color: #4F46E5;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1em;
}

/* .nav-links span {
  margin-left: 1.5rem;
} */

.dashboard-main {
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.subscription-section, .device-section, .logout-section {
  background: #fff;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#device-list > div {
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-bottom: 1px solid #eee;
}

input {
  padding: 0.5em;
  margin-right: 0.5em;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 0.5em 1em;
  border-radius: 6px;
  border: none;
  background-color: #4F46E5;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #4338CA;
}

button.delete-btn {
  background-color: #EF4444;
}

button.delete-btn:hover {
  background-color: #DC2626;
}

#api-key {
  margin-top: 1em;
  font-family: monospace;
}

#device-form {
  display: flex;
  gap: 0.5em;
}