/*
------------------------------------------------------------------------------
 NodeSniff Agent - Lightweight Linux metrics collector

 Author: Sebastian Zieba <sebastian@zieba.art>
 License: GNU GPL v3 (non-commercial use only)

 This software is licensed under the terms of the GNU General Public License
 version 3 (GPLv3) as published by the Free Software Foundation, for
 non-commercial use only.

 For commercial licensing, please contact the author directly.
------------------------------------------------------------------------------
*/
body {
  background-color: #f8f9fa; /* Matching background from main page */
  color: #6c757d; /* Matching text color from main page */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  text-align: left;
  padding-top: 70px; /* To avoid the nav bar overlap */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title and headings to match main page */
h1 {
  font-size: 3rem;
  color: #007bff; /* Matching the main page color */
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  color: #6c757d; /* Matching dark text color */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #6c757d; /* Matching text color from main page */
}

ul {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #6c757d;
}

ul li {
  margin-bottom: 0.5rem;
}

a {
  color: #007bff; /* Matching link color */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Simple nav bar styling for fixed position */
.ns-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #343a40; /* Matching the main page navbar */
  color: white;
  padding: 10px 0;
  z-index: 1000;
}

.ns-navbar .ns-navbar-brand {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

.ns-navbar .ns-navbar-right {
  position: absolute;
  right: 20px;
}
