@charset "utf-8";
/* CSS Document */


/* Popup container for bulk items in order system */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  font-size: x-large;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
  font-weight: normal;
  font-size: medium;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Dropdown Button */
.dropbtn {
  border: none;
  border-radius: 5px;
  display: inline-block;
  padding: 6px 18px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  background-color: #4CAF50;
  font-weight: bold;
  float: right;
  margin-top: 50px;
  margin-right: 10px;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: inline-block;
  float: right;
  position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  text-align: center;
  display: none;
  position: absolute;
  background-color: #fefefe;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  top: 100%;
  right: 0;
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}






.myBtn {
  border: none;
  border-radius: 5px;
  display: inline-block;
  padding: 6px 18px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  background-color: #4CAF50;
  font-weight: bold;
  float: right;
  margin-top: 50px;
  margin-right: 90px;

}

.dymoBtn {
  border: none;
  border-radius: 5px;
  display: inline-block;
  padding: 6px 18px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  background-color: #4CAF50;
  font-weight: bold;
}

.dymoBtn2 {
  border: none;
  border-radius: 5px;
  display: inline-block;
  padding: 6px 18px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  background-color: #4CAF50;
  font-weight: bold;
  float: right;
  margin-top: 50px;
  margin-right: 10px;
}


.dymoview {
  width: 180px;
  height: 40px;
  border: 1px solid black;
  border-radius: 15px;
  padding: 25px;
  padding-bottom: 50px;
  margin: 10px;
  text-align: center;
}

/* The Modal (background) */
.dymo {
  /*display: none; /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.dymo-content {
  margin-top: 15%;
  background-color: #fefefe;
  margin-inline: auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 5px solid #888;
  width: 300px;
  /* Could be more or less, depending on screen size */

}


/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5%;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  /* Could be more or less, depending on screen size */
  float: right;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

/* The Close Button */
.close2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close2:hover,
.close2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}



/**
 * Position icons into circle (SO)
 * http://stackoverflow.com/q/12813573/1397351 
 */
.circle-container {
  position: relative;
  width: 24em;
  height: 30em;
  padding: 2.8em;
  /*= 2em * 1.4 (2em = half the width of an img, 1.4 = sqrt(2))*/
  margin: 2em auto 0;
  margin-top: 5em;
}

.circle-container a {
  display: block;
  /*overflow: hidden;*/
  position: absolute;
  top: 50%;
  left: 40%;
  width: 12em;
  height: 12em;
  margin: -2em;
  /* 2em = 4em/2 */
  /* half the width */
  z-index: 9;
}

.circle-container img {
  display: block;
  width: 100%;
}

.deg0 {
  transform: translate(18em);
}

/* 12em = half the width of the wrapper */
.deg0outer {
  transform: translate(33.5em);
}

/* 12em = half the width of the wrapper */
.deg20 {
  transform: rotate(20deg) translate(18em) rotate(-20deg);
}

.deg45 {
  transform: rotate(45deg) translate(18em) rotate(-45deg);
}

.deg45outer {
  transform: rotate(45deg) translate(33.5em) rotate(-45deg);
}

.deg270 {
  transform: rotate(270deg) translate(18em) rotate(-270deg);
}

.deg135 {
  transform: rotate(135deg) translate(18em) rotate(-135deg);
}

.deg135outer {
  transform: rotate(135deg) translate(33.5em) rotate(-135deg);
}

.deg180 {
  transform: translate(-18em);
}

.deg180outer {
  transform: translate(-33.5em);
}

.deg225 {
  transform: rotate(225deg) translate(18em) rotate(-225deg);
}

.deg315 {
  transform: rotate(315deg) translate(18em) rotate(-315deg);
}

.deg90 {
  transform: rotate(90deg) translate(18em) rotate(-90deg);
}


.order-no {
  padding-left: 7.5em;
  padding-top: 3.1em;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  font-size: 80px;
}

.unlock-no {
  padding-left: 0.35em;
  padding-top: 3.1em;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  font-size: 80px;
}

.quote-no {
  padding-left: 1.4em;
  padding-top: 5.65em;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  font-size: 80px;
}


.quote-ready {
  padding-left: 6.5em;
  padding-top: 5.65em;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  font-size: 80px;
}

.todo-no {

  padding-top: 3.1em;
  text-decoration: none;
  font-weight: bold;
  position: absolute;
  font-size: 80px;
  margin-left: -220px;
}

.booking-table {
  font-size: 20px;


}


.body {
  font-family: 'Lato', sans-serif;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: #ff0000;
}

.body a {
  font-weight: bold;
  text-decoration: none;
  color: #4CAF50;
}

.body a:hover {
  font-weight: bold;
  text-decoration: none;
  color: #2AD933;
}


.header {
  min-height: 8em;
  width: 100%;
  position: absolute;
  outline: #000000;
  outline-width: 0.1em;
  outline-style: solid;
}

.title {

  text-align: center;
  padding-top: 0.75em;
  font-family: 'Lato', sans-serif;
  font-size: 3em;
  font-weight: Bold;
}

.header-logo__img {
  float: left;
  padding-top: 10px;
}

.main {
  min-height: 30em;
  padding-top: 5em;
  padding-left: 5em;
  padding-right: 5em;
}

.buttons-top {
  border-style: solid;
  border-color: #ddd;
  padding: 5px;
  background: #f2f2f2;
  float: right;
}

table {
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  white-space: normal;
  line-height: normal;
  font-weight: normal;
  font-size: medium;
  font-style: normal;
  color: -internal-quirk-inherit;
  text-align: start;
  border-spacing: 2px;
  border-color: grey;
  font-variant: normal;
}

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: -internal-center;
  background-color: #4CAF50;
  color: white;
}

th,
td {
  border-bottom: 1px solid #ddd;
  padding: 5px;
  text-align: center;
}

tr {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 16px;
}

tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.LazyList {

  margin-top: 3em;
  float: right;
}

.LazyList a {
  color: #000;

}

.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.footer {
  color: #FFFFFF;
  float: left;
  padding-top: 2em;
  padding-left: 1.75em;
  background-color: #000000;
  width: 100%;
}

.footer img {
  float: left;
}

.footer a {
  color: #FFFFFF;
  font-weight: bold;
}

.footer p {
  padding-left: 30em;
}

.footermid {
  color: #FFFFFF;
  float: left;
  padding-top: 2em;
  padding-left: 4.75em;
  width: 100%;

}

.footermid a {
  color: #FFFFFF;
  font-weight: bold;
}

.footermid p {
  padding-left: 30em;
}



.fade-out-container {

  display: flex;
  justify-content: center;
  position: absolute;
  margin-top: 150px;
  width: 100%;
}

.fade-out {
  background-color: #4CAF50;
  color: white;
  padding: 5px;
  animation: fadeOut ease 2s forwards;
  -webkit-animation: fadeOut ease 2s forwards;
  -moz-animation: fadeOut ease 2s forwards;
  -o-animation: fadeOut ease 2s forwards;
  -ms-animation: fadeOut ease 2s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ========================================
   MODERN UI STYLES FOR ORDER UPDATE PAGE
   ======================================== */

/* Modern Color Palette */
:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #818cf8;
  --success-color: #10b981;
  --success-dark: #059669;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --dark-bg: #1f2937;
  --light-bg: #f9fafb;
  --card-bg: #ffffff;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Modern Search Bar */
.modern-search-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.modern-search-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.modern-search-input {
  flex: 1;
  min-width: 250px;
  padding: 0.875rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.modern-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  transform: translateY(-1px);
}

.modern-btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-block;
}

.modern-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modern-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.modern-btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.modern-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.modern-btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.modern-btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Modern Status Badge */
.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin: 0.5rem 0;
}

/* Modern Table Styles */
.modern-table-container {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-table-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.5rem;
  color: white;
}

.modern-table-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.modern-table thead {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.modern-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border: none;
}

.modern-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.modern-table tbody tr:hover {
  background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
  transform: scale(1.01);
  box-shadow: var(--shadow-sm);
}

.modern-table tbody td {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  border: none;
}

.modern-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

/* Modern Select Dropdown */
.modern-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.875rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234f46e5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.modern-select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.modern-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Modern Link Styles */
.modern-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
}

.modern-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(2px);
}

/* Modern Alert/Update All Button */
.modern-alert {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.modern-alert:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Improved Modal Styles for Quote Calculator */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  margin: auto;
  padding: 2rem;
  border: none;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  animation: slideDown 0.3s ease;
  position: relative;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h2 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.modal-content .close {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: var(--danger-color);
  transform: rotate(90deg);
}

/* Modern Form Styles for Calculator */
.modal-content table {
  width: 100%;
  border: none;
}

.modal-content table th {
  text-align: left;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
}

.modal-content table td {
  padding: 0.75rem 0;
}

.modal-content input[type="text"],
.modal-content input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="number"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.modal-content input[type="text"]:disabled {
  background: var(--light-bg);
  color: var(--text-secondary);
  cursor: not-allowed;
}

.modal-content button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.modal-content button[type="button"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.modal-content button[type="button"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-search-form {
    flex-direction: column;
  }

  .modern-search-input {
    width: 100%;
  }

  .modern-btn {
    width: 100%;
  }

  .modern-table-container {
    overflow-x: auto;
  }

  .modern-table {
    font-size: 0.8rem;
  }

  .modern-table thead th,
  .modern-table tbody td {
    padding: 0.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

.gap-2 {
  gap: 1rem;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

/* Modern Header Styles */
.modern-header {
  background: white;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--primary-color);
}

.modern-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.modern-header-title {
  color: #111827;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
  text-align: left;
  margin-left: 2rem;
}

.modern-header-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.modern-header .header-logo__img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

/* Update the old myBtn to match modern style */
.myBtn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-md) !important;
  margin: 0 !important;
  float: none !important;
  display: inline-block !important;
}

.myBtn:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Supplier button styling */
.dropbtn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.625rem 1.25rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-md) !important;
  margin: 0 !important;
  float: none !important;
  display: inline-block !important;
}

.dropbtn:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.dymoBtn2 {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.625rem 1.25rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-md) !important;
  margin: 0 !important;
  float: none !important;
  display: inline-block !important;
}

.dymoBtn2:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

@media (max-width: 768px) {
  .modern-header-content {
    flex-direction: column;
    text-align: center;
  }

  .modern-header-title {
    font-size: 1.5rem;
  }

  .modern-header-buttons {
    justify-content: center;
    width: 100%;
  }
}

/* Collapsible Section Styles */
.collapsible-section .modern-table-header {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.collapsible-section .modern-table-header:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.collapse-icon {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.collapsible-content {
  max-height: 50000px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}

.collapsible-content.collapsed {
  max-height: 0;
  opacity: 0;
}

/* Staff Modal Styles */
.staff-modal {
  z-index: 10000;
}

.staff-modal .modal-content {
  max-width: 500px;
  padding: 2rem;
}

.staff-modal .modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.staff-modal .modal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.staff-modal .modern-select {
  margin-bottom: 1.5rem;
}

.staff-modal button {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

/* Collapsible Section Styles */
.collapsible-section .modern-table-header {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.collapsible-section .modern-table-header:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.collapse-icon {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.collapsible-content {
  max-height: 50000px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}

.collapsible-content.collapsed {
  max-height: 0 !important;
  opacity: 0 !important;
}

/* Staff Modal Styles */
.staff-modal {
  z-index: 10000;
}

.staff-modal .modal-content {
  max-width: 500px;
  padding: 2rem;
}

.staff-modal .modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.staff-modal .modal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.staff-modal .modern-select {
  margin-bottom: 1.5rem;
}

.staff-modal button {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}