:root {
  --text-color: #fff;
  --search-bar-background: #0e0e0e60;
  --scroll-bar-color: rgba(0,0,0 ,0.5);
  --header-red-color: #ab4747;
  --header-top-color: #393939;
  --footer-contrib-color: rgba(81, 81, 227, 0.8);
  --footer-color: #0e0e0e;
  --btn-color: rgb(44, 44, 150);
  --btn-text-color: rgb(230,230,230);
  --card-background-color: #1e1e1e;
}

@media (prefers-color-scheme: light) {
  :root {
    --scroll-bar-color: rgba(255,255,255 ,0.5);
    --header-red-color: #bf5d5d;
    --header-top-color: #dddddd;
    --text-color: #000;
    --search-bar-background: #bebebe;
    --footer-contrib-color: rgba(81, 81, 227, 0.8);
    --footer-color: #dcdcdc;
    --btn-color: rgb(81, 81, 227);
    --btn-text-color: #fff;
    --card-background-color: #cccccc;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --scroll-bar-color: rgba(0,0,0 ,0.5);
    --header-red-color: #ab4747;
    --header-top-color: #393939;
    --text-color: #fff;
    --search-bar-background: #0e0e0e60;
    --footer-contrib-color: rgba(81, 81, 227, 0.8);
    --footer-color: #0e0e0e;
    --btn-color: rgb(44, 44, 150);
    --btn-text-color: rgb(230,230,230);
    --card-background-color: #1e1e1e;
  }
}
.table {
  width: 100%;
  table-layout: auto;
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 4px;
  overflow: hidden;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.table th,
.table td {
  padding: 0.6em 0.8em;
  text-align: left;
  vertical-align: top;
}
.table th img,
.table td img {
  height: 30px;
  width: auto;
}
.table th {
  font-weight: 600;
}
.table caption {
  caption-side: bottom;
  padding: 0.5em;
  font-size: 0.85rem;
  opacity: 0.8;
}
.table {
  background-color: #ffffff;
  color: #202122;
  border: 1px solid #a2a9b1;
}
.table th,
.table td {
  border: 1px solid #a2a9b1;
  white-space: nowrap;
}
.table thead {
  background-color: #f8f9fa;
}
.table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
.table tbody tr:hover {
  background-color: #f5f6f7;
}
@media (prefers-color-scheme: dark) {
  .table {
    background-color: #202122;
    color: #eaecf0;
    border: 1px solid #444;
  }
  .table th,
  .table td {
    border: 1px solid #444;
    white-space: nowrap;
  }
  .table thead {
    background-color: #2a2d2e;
  }
  .table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .table tbody tr:hover {
    background-color: #2f3334;
  }
}

.table-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper::after {
  content: "";
  position: sticky;
  right: 0;
  top: 50px;
  height: 100%;
  width: 20px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08));
}

* {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: auto;
  color: var(--text-color);
}

header {
  margin: 0;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

#mainHeader {
  display: flex;
  align-items: center;
  background-color: var(--header-top-color);
}
#mainHeader #titleNameMetrop {
  padding-left: 10px;
  padding-right: 20px;
}
#mainHeader img {
  height: 30px;
  width: auto;
}

body, html {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  /* background */
  background-attachment: fixed;
  background-size: cover;
}

#mainContent {
  padding-left: 10px;
}

@media (prefers-color-scheme: light) {
  body, html {
    background: linear-gradient(to bottom, #f2f2f2 0%, #e6e6e6 25%, #ffffff 50%, #e6e6e6 75%, #f2f2f2 100%);
  }
  a {
    color: rgba(68, 92, 230, 0.87);
  }
}
@media (prefers-color-scheme: dark) {
  body, html {
    background: linear-gradient(to bottom, #1e1e1e 0%, #2a2a2a 25%, #333 50%, #2a2a2a 75%, #1e1e1e 100%);
  }
  a {
    color: rgba(107, 123, 211, 0.87);
  }
}
h1, h2, h3, h4, h5, p {
  color: var(--text-color);
}

h1 {
  margin-top: 1px;
  margin-bottom: 1px;
  padding-left: 5px;
  font-size: larger;
  text-align: left;
}

img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#logoMainPage {
  height: 30px;
}

svg {
  fill: currentColor;
}

/*# sourceMappingURL=style.css.map */
