:root {
  --primary-color: #f8f9fa;
  --secondary-color: #0a2240;      /* Dark Blue (Patriot Navy) for header */
  --hover-color: #113463;          /* Slightly lighter blue for hover */
  --nav-text-color: #ffffff;
  --nav-text-color-hover: #cccccc;
  --tertiary-color: #c8102e;       /* Patriot Red */
  --white: #ffffff;
  
  --text-primary: #333333;         /* Dark text for readability */
  --text-secondary: #ffffff;
  --text-tertiary: #555555;
  
  --background-color: #f1f3f5;     /* Soft off-white page background */
  --background-secondary: #ffffff; /* Crisp white for foreground cards */
  
  --table-color: #ffffff;
  --table-header-color: #e9ecef;
  --table-border-color: #dee2e6;
  --td-border-color: #e9ecef;
  
  --button-color: #0a2240;         /* Patriot Navy buttons */
  --btn-hover-color: #113463;
  --button-text: #ffffff;
  
  --button-green-color: #28a745;
  --button-green-text: #ffffff;
  --button-blue-color: #0d6efd;
  --button-blue-text: #ffffff;
  --button-blue-hover: #0b5ed7;
  --button-red-color: #c8102e;     /* Patriot Red */
  --button-red-text: #ffffff;
  --button-red-hover: #9e0c24;
  
  --btn-grey-color: #ced4da;
  --btn-grey-hover: #adb5bd;
  
  --drop-color: #ffffff;
  --h1-text: #0a2240;
  --datatable-blue-hover: #e0f0ff;
  --alt-table-color: #f8f9fa;
}

[data-theme="dark"] {
  --primary-color: #121212;
  --secondary-color: #061426;      /* Deepest Navy for dark mode header */
  --hover-color: #0a2240;
  --nav-text-color: #e0e0e0;
  --nav-text-color-hover: #ffffff;
  --tertiary-color: #c8102e;       /* Patriot Red */
  --white: #ffffff;
  
  --text-primary: #e0e0e0;         /* Light grey text for readability */
  --text-secondary: #ffffff;
  --text-tertiary: #a0a0a0;
  
  --background-color: #121212;     /* Very dark page background */
  --background-secondary: #1e1e1e; /* Darker foreground elements */
  
  --table-color: #1e1e1e;
  --table-header-color: #2b2b2b;
  --table-border-color: #333333;
  --td-border-color: #2b2b2b;
  
  --button-color: #113463;
  --btn-hover-color: #1a4a8c;
  --button-text: #ffffff;
  
  --button-green-color: #198754;
  --button-green-text: #ffffff;
  --button-blue-color: #0d6efd;
  --button-blue-text: #ffffff;
  --button-blue-hover: #0b5ed7;
  --button-red-color: #c8102e;
  --button-red-text: #ffffff;
  --button-red-hover: #9e0c24;
  
  --btn-grey-color: #495057;
  --btn-grey-hover: #343a40;
  
  --drop-color: #1e1e1e;
  --h1-text: #f1f3f5;
  --datatable-blue-hover: #0a2240;
  --alt-table-color: #2a2a2a;
}

h1 {
  font-size: 40px;
  color: var(--h1-text);
}

header h1 {
  color: var(--nav-text-color);
}

body {
  display: flex;
  color: var(--text-primary);
  flex-direction: column;
  align-items: center;
  height: auto;
  background-color: var(--background-color);
  overflow: auto;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

table {
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
}

th {
  border: 1px solid var(--table-border-color);
  padding: 8px;
  text-align: center;
  background-color: var(--table-header-color);
  color: var(--text-primary);
}

tr {
  background-color: var(--table-color);
}

td {
  border: 1px solid var(--td-border-color);
  padding: 8px;
  text-align: left;
  /* background-color: var(--table-color); */
  color: var(--text-primary);

}

.subtable tr {
  background-color: var(--background-secondary);
}

.subtable td {
  background-color: var(--background-secondary);
}

.subtable th {
  background-color: rgb(214, 212, 212);
  border: 1px;
}


.container {
  width: auto;
  margin: auto;
  overflow: visible;
  padding: auto;
}

header {
  background: var(--secondary-color);
  color: white;
  padding: 20px 0;
  min-height: 70px;
  min-width: 100%;
  border-bottom: var(--tertiary-color) 3px solid;
}

header ul {
  padding: 0;
  list-style: none;
}

header li {
  display: inline-block;
  padding: 0 20px 0 20px;
}

header nav {
  margin-top: 20px;
}

header .highlight,
header .current a {
  color: #e8491d;
  font-weight: bold;
}

header a:hover {
  color: #ffffff;
  font-weight: bold;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.nav-top h1 {
  flex: 1;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .nav-top h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .nav-top h1 {
    font-size: 20px;
  }
}

.nav-top .btn-nav {
  margin: 0;
}

.table-container {
  max-height: 70vh;
  /* Adjust this value according to your preference */
  overflow: auto;
  /* Makes the container scrollable vertically */
  width: 80%;
  /* Adjust this value according to your preference */
  border: 1px solid #000;

}

/* Button Styles */
.btn {
  background-color: var(--button-color);
  /* Button color */
  color: var(--button-text);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn:hover {
  background-color: var(--btn-hover-color);
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-nav {
  background-color: transparent;
  /* Button color */
  color: var(--nav-text-color);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 18px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-nav:hover {
  background-color: var(--hover-color);
  /* Change color on hover */
  color: var(--nav-text-color-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-nav:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.top-right {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

.nav-buttons {
  position: relative;
}

.btn-nav-theme {
  background-color: transparent;
  /* Button color */
  color: var(--nav-text-color);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 18px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-nav-theme:hover {
  background-color: var(--hover-color);
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-nav-theme:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-red {
  background-color: var(--button-red-color);
  /* Button color */
  color: var(--button-red-text);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-red:hover {
  background-color: var(--button-red-hover);
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-red:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

ul {
  padding: 0;
}

li {
  position: relative;
  display: inline-block;
}

.dotted-list ul {
  list-style: circle;
  padding: 2px;
}

.dotted-list li {
  display: list-item;
}

.navbar_drop {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 150px;
  /* Or as per your design */
  z-index: 1;
  background-color: var(--drop-color);
  /* Dropdown background color */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  /* Optional: Adds a shadow to the dropdown */
  padding: 12px 16px;
}

li:hover .navbar_drop {
  display: block;
}

#nav-container {
  display: contents;
  transition: transform 0.3s ease;
  width: 90%;
}

.hidden {
  display: none;
}

.open-nav {
  display: none;
  background-color: transparent;
  color: var(--nav-text-color);
}

.top-of-screen {
  position: absolute;
  top: 10px;
  display: block;
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
}

#close-nav {
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
}

footer {
  display: block;
  justify-content: center;
  padding: 5px;
  background-color: var(--secondary-color);
  color: var(--text-primary);
}

.btn-green {
  background-color: var(--button-green-color);
  /* Button color */
  color: var(--button-green-text);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-green:hover {
  background-color: var(--secondary-color);
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-green:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-green-mini {
  background-color: var(--button-green-color);
  /* Button color */
  color: var(--button-green-text);
  /* Text color */
  padding: 5px 10px;
  /* Padding for size */
  font-size: 12px;
  /* Text size */
  font-weight: bold;
  border: none;
  /* Remove borders */
  border-radius: 3px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1px;
}

/* Button Hover State */
.btn-green-mini:hover {
  background-color: var(--secondary-color);
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-green-mini:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-blue-mini {
  background-color: var(--button-blue-color);
  /* Button color */
  color: var(--button-blue-text);
  /* Text color */
  padding: 5px 10px;
  /* Padding for size */
  font-size: 12px;
  /* Text size */
  font-weight: bold;
  border: none;
  /* Remove borders */
  border-radius: 3px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1px;
}

/* Button Hover State */
.btn-blue-mini:hover {
  background-color: var(--button-blue-hover);
  color: whitesmoke;
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-blue-mini:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-red-mini {
  background-color: var(--button-red-color);
  /* Button color */
  color: var(--button-red-text);
  /* Text color */
  padding: 5px 10px;
  /* Padding for size */
  font-size: 12px;
  /* Text size */
  font-weight: bold;
  border: none;
  /* Remove borders */
  border-radius: 3px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1px;
}

/* Button Hover State */
.btn-red-mini:hover {
  background-color: var(--button-red-hover);
  color: whitesmoke;
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-red-mini:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-blue {
  background-color: var(--button-blue-color);
  /* Button color */
  color: var(--button-blue-text);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-blue:hover {
  background-color: var(--button-blue-hover);
  /* Change color on hover */
  color: var(--button-text);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-blue:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.btn-grey {
  background-color: var(--btn-grey-color);
  /* Button color */
  color: var(--text-primary);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  /* Cursor indicates clickable */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

/* Button Hover State */
.btn-grey:hover {
  background-color: var(--btn-grey-hover);
  /* Change color on hover */
  color: var(--button-text);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
  /* Slight lift */
}

/* Button Active State */
.btn-grey:active {
  transform: translateY(1px);
  /* Push down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Less shadow */
}

.vendor_sid>td {
  background-color: var(--table-color);
}

.vendor_not_sid>td {
  background-color: #f39539;
}

.Ordered_Part>td {
  background-color: #2600ff;
}

.UnOrdered_Part>td {
  background-color: #f0f0f0
}

.selector {
  color: var(--button-green-text);
  /* Text color */
  padding: 10px 20px;
  /* Padding for size */
  font-size: 16px;
  /* Text size */
  border: none;
  /* Remove borders */
  border-radius: 5px;
  /* Rounded corners */
  text-align: center;
}

.submenu {
  display: none;
}

.submenu-trigger:hover+.submenu,
.submenu:hover {
  display: block;
}

.datalist-container ul {
  background-color: var(--background-color);
  border: var(--tertiary-color);
  border-radius: 5px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.datalist-container ul:hover {
  background-color: var(--secondary-color);
  color: var(--text-secondary);
  font-weight: bolder;
}

strong {
  font-weight: bolder;
}

.datatable tr:hover {
  background-color: var(--secondary-color);
  color: var(--text-secondary);
  font-weight: bolder;

}

.datatable-blue tr:hover {
  background-color: var(--datatable-blue-hover);
  color: var(--text-secondary);
  font-weight: bolder;

}

.list-container {
  background: var(--background-secondary);
  border: 1px solid darkgray;

}

.list-table tr {
  background: rgb(196, 196, 196);
  border: none;

}

.list-table td {
  border: none;

}

.list-table a {
  width: 90%;
}

.menu-table {
  background: none;
  border: none;

}

.menu-table tr {
  background: none;
  border: none;

}

.menu-table td {
  border: none;

}

.menu-table a {
  width: 90%;
}

.form-table {
  padding: 0;
  width: 90%;
}

.form-table tr {
  background: none;
}

.form-table td {
  padding: 0;
  padding-top: 1px;
  padding-bottom: 1px;
  text-align: center;
}

.receipt-table {
  padding: 0;
}

.receipt-table tr {
  background: none;

}

.receipt-table td {
  padding: 2px;
  text-align: center;


}

.mini-table {
  padding: 0;
  width: auto;
}

.mini-table tr {
  background: none;
}

.mini-table td {
  padding: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  text-align: center;
  font-size: 12px;
}

.mini-table th {
  padding: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  text-align: center;
  font-size: 14px;
}

.printable-table {
  padding: 0;
  width: auto;
}

.printable-table tr {
  background: none;
}

.printable-table td {
  padding: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  text-align: center;
  font-size: 10px !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.printable-table th {
  padding: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  text-align: center;
  font-size: 11px !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.alt-table {
  padding: 2px;
  border-collapse: separate;
  /* Separate border model */
  border-spacing: 0;
  /* Remove spacing between table cells */
  border: 1px solid #ddd;
  /* Outer border */
  border-radius: 10px;
  /* Rounds the outer corners of the table */
  overflow: hidden;
  /* Ensures that rounded corners are respected */
}

.alt-table tr {
  background: none;
}

.alt-table td {
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.alt-table th {
  background: var(--alt-table-color);
  font-weight: bolder;
  border: 1px solid #ddd;
  padding: 8px;
}

.nav-table {
  padding: 2px;
  border-collapse: separate;
  /* Separate border model */
  border-spacing: 0;
  /* Remove spacing between table cells */
  border: 1px solid #ddd;
  /* Outer border */
  border-radius: 10px;
  /* Rounds the outer corners of the table */
  overflow: hidden;
  /* Ensures that rounded corners are respected */
}

.nav-table tr {
  background: none;
}

.nav-table td {
  padding: 2px;
  text-align: center;
  border: 1px solid #ddd;
}

.nav-table th {
  background: lightblue;
  font-weight: bolder;
  border: 1px solid #ddd;
  padding: 8px;
}

.inner-table-container {
  text-align: center;
}

.inner-table {
  margin: 0 auto;
}

.inner-table td {
  background: rgb(255, 255, 255);
}

.inner-table th {
  background: rgb(187, 228, 241);
}

.side-by-side {
  display: flex;
  justify-content: center;
  gap: 10%;
}

/* Style the form */
.form-close {
  text-align: right;
  position: fixed;
  right: 2%;
  top: 2%;

}

.form-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container {
  max-width: 400px;
  padding: 10px;
  background-color: white;
}

.form-popup2 {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Add styles for the form container */
.form-container2 {
  max-width: 800px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* Style the submit/login button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Style the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}

.side-by-side-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.side-by-side-container-table {
  align-items: center;
  justify-items: flex-start;
  margin: 10px;
}

.company-info-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.company-info-container>ul {
  padding: 0;
  flex: 1
}

.company-info-container>ul>li {
  position: relative;
  display: inline-block;
  flex: 1
}

.company-info-container-item {
  align-items: center;
  margin: 10px;
}

.contacts-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* Add styles for the form container */
.contacts-container {
  max-height: 800px;
  max-width: 1200px;
  padding: 10px;
  background-color: white;
  overflow-y: auto;
}

.company-notes {
  display: none;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  overflow: auto;
  max-width: fit-content;
}

.btn-circle-red {
  display: inline-block;
  width: 50px;
  /* Diameter of the button */
  height: 50px;
  /* Diameter of the button */
  background-color: red;
  /* Button color */
  border: none;
  /* Remove default border */
  border-radius: 50%;
  /* Makes the button circular */
  color: white;
  /* Text color */
  text-align: center;
  /* Center the text horizontally */
  line-height: 50px;
  /* Center the text vertically */
  cursor: pointer;
  /* Changes the cursor to a pointer on hover */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  /* Optional: Adds a slight shadow for depth */
  transition: background-color 0.3s ease;
  /* Optional: Smooth transition for hover effect */
}

.btn-circle-red:hover {
  background-color: darkred;
  /* Darker shade when hovered for feedback */

}

.btn-circle-red-mini {
  display: inline-block;
  width: 30px;
  /* Diameter of the button */
  height: 30px;
  /* Diameter of the button */
  background-color: red;
  /* Button color */
  border: none;
  /* Remove default border */
  border-radius: 50%;
  /* Makes the button circular */
  color: white;
  /* Text color */
  text-align: center;
  /* Center the text horizontally */
  line-height: 30px;
  /* Center the text vertically */
  cursor: pointer;
  /* Changes the cursor to a pointer on hover */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  /* Optional: Adds a slight shadow for depth */
  transition: background-color 0.3s ease;
  /* Optional: Smooth transition for hover effect */
}

.btn-circle-red-mini:hover {
  background-color: darkred;
  /* Darker shade when hovered for feedback */
  transform: translateY(-3px);
}

.favorite {
  background-color: goldenrod;
}

.table-container-2 {
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  padding: 20px;
  overflow: auto;
  max-width: 90%;
}

.btn-star {
  background-color: #ffffff;
  /* Whitebackground */
  border: none;
  /* No border */
  color: white;
  /* White text */
  padding: 20px;
  /* Padding */
  font-size: 16px;
  /* Font size */
  cursor: pointer;
  /* Cursor on hover */
  position: relative;
  /* For pseudo-elements positioning */
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.btn-star:hover {
  background-color: gold;
}

.btn-star-favorite {
  background-color: #ffd104;
  /* Yellow background */
  border: none;
  /* No border */
  color: white;
  /* White text */
  padding: 20px;
  /* Padding */
  font-size: 16px;
  /* Font size */
  cursor: pointer;
  /* Cursor on hover */
  position: relative;
  /* For pseudo-elements positioning */
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.btn-star-favorite:hover {
  background-color: rgb(255, 255, 255);
}

.star-button:before,
.star-button:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fdd835;
}

.star-button:before {
  transform: rotate(72deg);
  transform-origin: center;
}

.star-button:after {
  transform: rotate(-72deg);
  transform-origin: center;
}

.quantity_low {
  background-color: rgb(255, 131, 131);
}

.quantity_low>td {
  background-color: rgb(255, 131, 131);
  color: rgb(43, 39, 39);
}

.quantity_none {
  background-color: rgb(255, 0, 0);
}

.quantity_none>td {
  background-color: rgb(255, 0, 0);
  color: whitesmoke;
}

.iframe-embed {
  position: relative;
  height: 80vh;
  width: 100vw;
  margin-left: 10%;
  margin-right: 10%;
  border: 0;
}

.blue-link {
  background: none;
  border: none;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-size: large;
}

.part_edited>td {
  background-color: #f39539;
}

.part_unedited>td {
  background-color: #f0f0f0;

}

.part_edited {
  background-color: #f39539;
}

.part_unedited {
  background-color: #f0f0f0;

}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron>hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }

  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

.category_selector {
  display: table-cell;
}

.category_typed {
  display: none;
}

.credit_status_h {
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FF0000;
}

.credit_status_c {
  font-family: Arial Helvetica, sans-serif;
  background-color: #FFFF00;
}

.credit_status {
  font-family: Arial, Helvetica, sans-serif;
}

.credit_status>table {
  border-width: 0px;
  text-align: center;
  font-family: 'Arial Narrow';
}

.credit_status_c>table {
  border-width: 0px;
  text-align: center;
  font-family: 'Arial Narrow';
}

.credit_status_h>table {
  border-width: 0px;
  text-align: center;
  font-family: 'Arial Narrow';
}

.mobile-btn {
  font-size: 100px;
  background-color: #0000FF;
  color: #FFFF00;
}

.mobile-btn:hover {
  background-color: #0202b3;
  /* Change color on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
  transform: translateY(-3px);
}

.nseast {
  height: 25px;
  white-space: nowrap;
  background-color: #FF9C00;
}

.nswest {
  height: 25px;
  white-space: nowrap;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /* Position the tooltip above the link */
  left: 50%;
  margin-left: -110px;
  /* Center the tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.called {
  background-color: var(--background-secondary);
  color: var(--text-tertiary)
}

.called td {
  background-color: var(--background-secondary);
  color: var(--text-tertiary)
}

.addEmployee {
  max-height: 800px;
  max-width: 1200px;
  padding: 10px;
  background-color: rgba(43, 42, 42, 0.8);
  overflow-y: auto;
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.addEmployeeTable {
  display: block;

}

.close {
  text-align: right;
  position: fixed;
  right: 2%;
  top: 2%;
  background-color: transparent;
  color: #616161;
}

.site_note {
  font-size: 12px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* Makes it a circle */
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  transition: background-color 0.2s;
}

.btn-icon:hover {
  background-color: #e5e7eb;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.icon-btn {
  /* 1. Reset everything */
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;

  /* 2. Create the shape */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  /* Large enough for fingers to tap */
  height: 44px;
  border-radius: 12px;
  /* Smooth rounded corners */

  /* 3. Look & Feel */
  color: #4b5563;
  /* Subtle dark gray */
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Hover State makes it feel "clickable" */
.icon-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  /* Very light tint */
  color: #111827;
  /* Darker icon on hover */
}

/* The Active State gives tactile feedback */
.icon-btn:active {
  transform: scale(0.92);
  background-color: rgba(0, 0, 0, 0.1);
}

/* Standardizing the icon size inside */
.icon-btn svg,
.icon-btn i {
  width: 24px;
  height: 24px;
  display: block;
}