@font-face {
  font-family: 'BlenderPro-600-normal';
  src: url('/fonts/blenderpro-medium-webfont.eot');
  src: local('â˜º'), url('/fonts/blenderpro-medium-webfont.eot?#iefix') format('embedded-opentype'), url('/fonts/blenderpro-medium-webfont.woff') format('woff'), url('/fonts/blenderpro-medium-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DinNextLT-400-normal';
  src: url('/fonts/DINNextLTW04-Regular.eot');
  src: local('â˜º'), url('/fonts/DINNextLTW04-Regular.eot?#iefix') format('embedded-opentype'), url('/fonts/DINNextLTW04-Regular.woff') format('woff'), url('/fonts/DINNextLTW04-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, .ui-btn {
  font-family: "DinNextLT-400-normal", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  margin-top: 1px;
  margin-bottom: 10px;
  font-family: "BlenderPro-600-normal", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight:bold;
}

body {
  padding-top: 5rem;
  color: rgb(var(--bs-tertiary-color-rgb));
}

.btn-yellow {
  --bs-btn-color: black;
  --bs-btn-bg: yellow;
  --bs-btn-hover-color: black;
  --bs-btn-hover-bg: yellow;
  --bs-btn-hover-border-color: black;
  --bs-btn-border-color: black;
}

.btn-yellow-no-border {
  --bs-btn-color: black;
  --bs-btn-bg: yellow;
  --bs-btn-hover-color: black;
  --bs-btn-hover-bg: yellow;
  --bs-btn-hover-border-color: black;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-container .tooltip-text {
  visibility: hidden;
  width: 160px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the icon */
  left: 50%;
  margin-left: -80px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px; /* Normal text size */
}

.tooltip-container .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%; /* Arrow on the bottom */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-icon {
  font-size: 1rem; /* Normal icon size */
  vertical-align: middle; /* Align with h2 text */
}

/* Taken from ChatGPT */

.pagination {
  display: inline-block;
}

.pagination a, .pagination .current {
  color: #007bff;
  float: none;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin: 0 8px; /* Spacing between links */
  line-height: 1.5rem;
}

.pagination a:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

.pagination > .current {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #007bff; /* Same as active link color */
  color: #fff;
  border-radius: 0.25rem;
  border: 1px solid #007bff;
  margin: 0 8px;
  line-height: 1.5rem;
  vertical-align: middle;
}

/* Add more spacing to bottom of tables */
.pb-6 {
  padding-bottom: 6rem !important;
}

/* Sales Charts Styling */
#unitsSoldChart, #totalSalesChart {
  max-height: 400px;
}

.card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-body canvas {
  padding: 15px 0;
}