@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

.iotapp-main {
  padding: 24px;
  min-height: calc(100vh - 64px);
}

.iotapp-drawer {
  width: 260px;
}

.iotapp-footer {
  padding: 12px 24px;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.iotapp-nav {
  padding: 0 0 12px 0;
}

.iotpage-root {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
}

.iotpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.iotpage-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iotpage-description {
  opacity: 0.75;
}

.iotpage-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iotpage-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iotcard-root {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.iotcard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.iotcard-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iotcard-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iotcard-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.iotnav-root {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 18px -14px rgba(15, 23, 42, 0.4);
}

.iotnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.iotnav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iotnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iotnav-button {
  border-radius: 999px;
}

@media (max-width: 900px) {
  .iotapp-main {
    padding: 16px;
  }

  .iotapp-nav {
    padding: 12px 16px 0;
  }

  .iotnav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .iotpage-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
