/* Import Google Fonts or define your own font-face */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* Apply the font to the whole page */
body {
  font-family: 'Georgia', sans-serif; }

.icon-text-container {
  display: flex;
  align-items: center;
  /* Align items vertically centered */ }

.read {
  background-color: #f0f0f0;
  /* Light gray background for read notifications */ }

.section-img {
  width: 100%;
  /* Full width of the column */
  height: 300px;
  /* Fixed height */
  object-fit: cover;
  /* Crop/scale to fit without distortion */ }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  transition: background-color 0.3s ease; }

.online {
  background-color: lawngreen; }

.offline {
  background-color: red; }

a {
  text-decoration: none;
  color: #3498db;
  /* Default link color */
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
  /* Smooth color transition */ }

.txt_del {
  background: #f6f6fb;
  padding: 7px;
  color: red;
  border-radius: 2px; }

.clickable {
  cursor: pointer; }

.txt_del {
  font-size: .875em;
  color: var(--bs-code-color);
  word-wrap: break-word; }

.txt_del {
  font-family: var(--bs-font-monospace);
  font-size: 1em; }

a i {
  transition: transform 0.3s ease;
  /* Smooth icon movement */ }

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #3498db;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  /* Smooth underline animation */ }

a:hover {
  color: #e74c3c;
  /* Change text color on hover */ }

a:hover i {
  transform: translateX(3px);
  /* Move the icon slightly to the right */ }

a:hover::after {
  transform: scaleX(1);
  /* Animate underline to grow from right to left */
  transform-origin: left; }

.icon-text-container .icon-device {
  margin-right: 0.5rem;
  /* Space between icon and text */ }

.table-cell-center {
  display: flex;
  justify-content: center;
  /* Center items horizontally */
  align-items: center;
  /* Center items vertically */
  text-align: center;
  /* Center text horizontally */ }

.icon-text-container img {
  width: 20px;
  /* Adjust size as needed */
  height: auto;
  /* Maintain aspect ratio */
  margin-right: 0.5rem;
  /* Space between icon and text */ }

.radar {
  position: relative;
  width: 35vmin;
  height: 35vmin;
  background: repeating-radial-gradient(transparent, transparent 4.5%, rgba(80, 255, 0, 0.35) 5%, transparent 5.5%) content-box, linear-gradient(transparent 49.7%, rgba(80, 255, 0, 0.2) 49.9%, rgba(80, 255, 0, 0.2) 50.1%, transparent 50.3%) content-box, linear-gradient(to right, transparent 49.7%, rgba(80, 255, 0, 0.2) 49.9%, rgba(80, 255, 0, 0.2) 50.1%, transparent 50.3%) content-box, radial-gradient(#002500, #000500) content-box, linear-gradient(to bottom right, #171a18, #171a18) border-box;
  border: 2.5vmin solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
  filter: drop-shadow(1vmin 1vmin 1vmin rgba(0, 0, 0, 0.4)); }
  .radar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: conic-gradient(transparent 90%, rgba(80, 255, 0, 0.35));
    border-radius: 50%;
    box-shadow: inset 0 0 2vmin rgba(0, 0, 0, 0.9);
    animation: spin 2s linear infinite; }
  .radar__dot {
    position: absolute;
    width: 3%;
    height: 3%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s ease-out infinite; }
    .radar__dot:first-of-type {
      top: 24%;
      left: 76%;
      animation-delay: 0.25s; }
    .radar__dot:nth-of-type(2) {
      top: 80%;
      left: 20%;
      animation-delay: 1.25s; }
    .radar__dot:last-of-type {
      top: 36%;
      left: 36%;
      animation-delay: 1.75s; }

@keyframes spin {
  to {
    transform: rotate(1turn); } }

@keyframes blink {
  2%,
  20% {
    background-color: rgba(80, 255, 0, 0.85);
    box-shadow: 0 0 1vmin rgba(80, 255, 0, 0.6); }
  90% {
    background-color: transparent; } }

#piechartdiv {
  width: 100%;
  height: 410px; }

.card-green.card-outline {
  border-top: 3px solid #28a745; }

.card-green.card-outline-tabs > .card-header a.active {
  border-top: 3px solid #28a745; }

.card-green:not(.card-outline) > .card-header {
  background-color: #28a745; }

.table-data3 thead {
  background: #333; }

.card-blue:not(.card-outline) > .card-header {
  background-color: deepskyblue; }

#slider-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  /* Optional: Add background color to the slider container */
  text-align: center;
  z-index: 1000;
  /* Ensure the slider is on top of other elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Add shadow for better visibility */
  padding: 10px 0; }

.badge-empty {
  width: 20px;
  height: 20px;
  display: inline-block; }

.text-medium {
  font-size: 16px; }

.myCustomClass {
  font-size: 15px;
  /* Adjust font size as needed */
  white-space: nowrap;
  text-align: left;
  /* Align text to the left */ }

.year-divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #a90707;
  /* Adjust color as needed */
  margin-top: 5px; }

.ui-rangeSlider-label {
  white-space: nowrap;
  text-align: left;
  /* Align text to the left */ }

#rulersExample {
  width: 100%;
  /* Ensures the slider takes the full width of its container */
  overflow-x: auto;
  /* Allows horizontal scrolling if necessary */
  text-align: left;
  /* Align the container content to the left */
  padding-left: 10px;
  /* Add padding if needed to avoid text being cut off */ }

/* Ensure the slider handles use FontAwesome */
.ui-rangeSlider-handle {
  width: 24px;
  /* Adjust the width as needed */
  height: 24px;
  /* Adjust the height as needed */
  background: none;
  /* Remove background */
  cursor: pointer;
  /* Set cursor to pointer */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center the icon horizontally */
  position: relative;
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */ }

.ui-rangeSlider-handle::before {
  content: "\f7a5";
  /* FontAwesome icon code for down arrow */
  font-family: 'FontAwesome';
  /* Ensure the correct font family */
  font-size: 16px;
  /* Adjust the font size as needed */
  color: cornsilk;
  /* Adjust the color as needed */
  position: absolute;
  top: 50%;
  /* Center vertically */
  left: 20%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
  /* Adjust positioning to truly center the icon */ }

/* Style for the slider bar */
.ui-rangeSlider-bar {
  background: rgba(255, 255, 255, 0.45) !important;
  /* Light transparent blue with higher specificity */ }

.tab-content {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px; }

.nav-tabs {
  margin-bottom: 0; }

.bg-purple {
  background-color: #6f42c1; }

.radius-10 {
  border-radius: 10px; }

.site-card {
  border: 1px solid #ddd;
  transition: transform 0.2s, box-shadow 0.2s; }

.site-card-link:hover .site-card {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }

.site-card-link {
  display: block; }

.site-form {
  display: flex;
  flex-wrap: wrap; }

.site-form .row {
  width: 100%; }

.btn-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s; }

.btn-floating:hover {
  background-color: #0056b3;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); }

/* Custom class for styling ticks */
.myCustomClass {
  height: 10px;
  /* Height for month ticks */
  width: 10px;
  /* Width for month ticks */
  margin-top: 2px;
  /* Adjust to position correctly */
  font-family: 'IBM Plex Sans', sans-serif;
  /* Desired font family */
  font-size: 0.8rem;
  /* Desired font size */ }

/* Custom class for year divider */
/* Style for the slider bar */
/* Style for the small scales */
.ui-slider .ui-slider-scale .ui-slider-tick-mark {
  height: 5px;
  width: 1px;
  background: #333; }

/* Optional: Style for the handle */
.ui-slider .ui-slider-handle {
  border-radius: 50%;
  background: #007bff; }

.year-divider {
  border-right: 2px solid red;
  /* Divider for year change */ }

.slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem; }

.slider-buttons {
  display: flex; }

.slider-buttons .btn {
  margin-right: 0.5rem;
  color: #fff;
  /* Text color */
  font-family: IBM Plex Sans, sans-serif;
  /* Font family */
  font-size: 0.7rem;
  /* Font size */ }

.slider-buttons .btn:hover {
  background-color: #e0e0e0;
  /* Optional: change background color on hover */ }

.slider-dates {
  display: flex;
  align-items: center;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 0.8em; }

.slider-dates p {
  background: #335cad;
  color: #fff;
  margin: 0 0.5rem;
  /* Adjust spacing between date paragraphs */
  padding: 0.3rem 0.5rem;
  /* Padding inside the border */
  border: 1px solid #000;
  /* Border around each date */
  border-radius: 5px;
  /* Optional: rounded corners */ }

.popover-body-custom {
  white-space: pre-wrap;
  /* Preserve whitespace and wrap text */
  padding: 10px;
  /* Add padding for better readability */
  max-width: 1000px;
  /* Set a max width for the popover */ }

.text-red {
  color: red;
  /* Text color for past dates */ }

.text-green {
  color: green;
  /* Text color for future dates */ }

#small-pie-chart, #small-pie-chart3, #small-pie-chart4 {
  margin: 50px auto; }

#small-pie-chart1, #small-pie-chart2 {
  max-width: 1000px;
  margin: 35px auto;
  padding: 5px; }

.new-badge {
  background-color: #28a745;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  overflow: hidden; }

.new-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  transform: skewX(-20deg); }

.new-badge::before {
  animation: shiny 3s ease-in-out infinite; }

@keyframes shiny {
  0% {
    left: -50%; }
  100% {
    left: 150%; } }

table {
  width: 100% !important;
  /* Ensure the table fits within its parent container */
  table-layout: auto;
  /* Let the table layout adjust automatically */ }

table td {
  max-width: 150px;
  /* Adjust this width as per your need */
  word-wrap: break-word;
  white-space: normal;
  font-size: 0.95em;
  /* Reduce font size */ }

table td:nth-child(2) {
  white-space: normal;
  /* Allow wrapping */
  word-wrap: break-word;
  /* Break long words */
  word-break: break-all; }

.form-check-input-custom {
  width: 15px;
  /* Make checkboxes larger */
  height: 15px; }

.modal-body-deep-scan {
  font-size: 1.2rem;
  /* Increase font size */
  padding: 20px;
  /* Add padding to the body */ }

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