/*
  Project: ThingsBoard Export Data
  Description: A tool to export ThingsBoard telemetry data to PDF, PNG, XLS, and JSON formats.
  Author: electrocoder https://github.com/electrocoder/thingsboard-export-data
  Created: April 2025
  Note: This is an independent project using ThingsBoard's open-source API. It is not affiliated with or endorsed by ThingsBoard, Inc.
*/

:root {
  --bs-body-bg: var(--bs-gray-100);
}

/* Flexbox düzeni */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Arama için eşleşen kelimeleri vurgulama */
mark {
  background-color: yellow;
  padding: 0;
}

/* Hata mesajı için stil */
.alert {
  margin-bottom: 1rem;
}

/* Export bilgisi için stil (PNG ve PDF) */
.export-info {
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  color: #333;
}