/* Will affect what is on local host */
.theme-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000; /* Replace with your theme color */
  border-radius: 0;
  box-shadow: none;
}

.center-input {
  display: block;
  margin: 0 auto;
}

.images-header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
}

.ebay-listing-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: auto;
}

/* alert alert-success float-center text-center message-text */
.alert.alert-success.float-center.text-center.message-text {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.ebay-listing-form .mb-3 {
  width: 100%;
}

.ebay-listing-form .mb-3 input,
.ebay-listing-form .mb-3 select,
.ebay-listing-form .mb-3 textarea {
  width: 100%;
}

.back-btn {
  border-width: 2px;
  transition: all 0.3s ease;
  color: #6c757d; /* Bootstrap's secondary color */
  outline: none; /* Remove the default outline */
}

.back-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); /* Add a custom focus style */
}

.back-btn:hover {
  background-color: #6c757d; /* Bootstrap's secondary color */
  color: white;
}

.btn-spacing {
  margin-right: 10px;
}

.btn.shipped {
  background-color: green;
}

.btn.not-shipped {
  background-color: red;
}

.btn.assign-asin {
  background-color: blue;
}

.btn.create-case {
  background-color: yellow;
}

.btn.case-submitted {
  background-color: orange;
}

.dropdown-toggle::after {
  display: none; /* This will remove the little notch on the right */
}

.position-absolute {
  top: 0.5rem;
  right: 0.5rem;
}

.shadow-border {
  padding: 10px;
  border: 1px solid #e9ecef; /* Bootstrap's light border color */
  border-radius: 0.25rem; /* Bootstrap's default border radius */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Bootstrap's default shadow */
}

.dropzone-error {
  color: red;
  font-weight: bold;
}

.images-container {
  max-height: 36vh;
  overflow-y: auto;
}

/* Style the image container as a grid */
.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Style the card */
.card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  display: flex;
  flex-direction: column;
}

.card:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}

.card-footer {
  padding: 8px 10px;
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: auto;
}

/* Style the image */
.card-img-top {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background-color: #f8f9fa;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 5px;
  transition: transform 0.3s ease;
}

/* Scale the image on hover */
.card:hover .card-img-top {
  transform: scale(1.1);
}

/* Style and position the delete button */
.card .delete-image {
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
  background: rgba(255, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
}

/* Show the delete button on hover */
.card:hover .delete-image {
  display: inline-block;
}

/* Style the dropzone */
.dropzone-container {
  margin-top: 15px;
}

.dropzone {
  width: 100%;
  border: 2px dashed #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Highlight the dropzone on hover */
.dropzone:hover {
  background-color: #f0f0f0;
}

/* Center the text and icon */
.dropzone-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Style the icon */
.fas.fa-cloud-upload-alt {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #6c757d;
}

.select-rectangle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #edfff8;
  border: 2px solid #edfff8;
  display: none;
  z-index: 10;
}

.card:hover .select-rectangle {
  display: block;
}

.card.selected .select-rectangle {
  display: block;
  background-color: #56cc9d;
}

.card.selected {
  border: 2px solid #56cc9d;
}

.dropzone-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  font-weight: bold;
}

/* Hide increment and decrement buttons for number inputs */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  appearance: textfield;
  -moz-appearance: textfield; /* For Firefox */
}

.card.p-4.shadow-sm {
  margin: 0.5rem 0 1.5rem 0;
}

.asteriskField {
  color: red;
  display: none;
}

/* OTHER */
.ebay-status-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

body {
  background-color: #f8f9fa;
  font-family:
    Montserrat,
    -apple-system,
    system-ui,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

nav.navbar.navbar-expand-lg.navbar-dark.bg-primary {
  background-color: #ffff !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar-brand {
  color: #61c199 !important;
  font-family: 'RussoOne', sans-serif;
  font-size: 1.5rem !important;
}

.navbar-collapse {
  flex-grow: unset;
  gap: 10px;
  padding: 0 20px;
}

#nav-products i,
#nav-shipments i,
#nav-billing i,
#nav-announcements i,
#nav-amazon i,
#nav-admin-statistics i,
#nav-lpn-lookup i,
#nav-email-management i,
#nav-location-management i,
#nav-statements i,
#nav-claim-rules i,
#nav-liquidations i,
#nav-warehouse-fulfillments i,
#nav-create-fba-shipments i,
#nav-profile i,
#nav-signout i {
  font-size: 24px;
}

#nav-shipments i {
  font-size: 22px;
}

#nav-amazon i {
  font-size: 28px;
}

/* underline the link in green on hover and transparent background */
.nav-item-secondary a:hover {
  text-decoration: underline;
  background-color: transparent;
  color: #2cb67d;
}

.signup-nav-button,
.login-nav-button,
.dashboard-nav-button,
.signout-nav-button {
  padding: 10px 40px;
  border: none;
  font-weight: 500;
}

.signup-nav-button {
  background-color: #56cc9d;
  color: #fff;
}

.login-nav-button {
  background-color: #fff;
  color: #56cc9d;
}

.signup-nav-button:hover,
.login-nav-button:hover {
  text-decoration: none;
}

.login-nav-button:hover {
  background-color: #56cc9d;
}

.signup-nav-button:hover {
  background-color: #43b587;
  color: #fff;
}

.dashboard-nav-button {
  background-color: #56cc9d;
  color: #fff;
}

.signout-nav-button {
  background-color: #fff;
  color: #56cc9d;
}

.dashboard-nav-button:hover {
  text-decoration: none;
  background-color: #43b587;
  color: #fff;
}

.signout-nav-button:hover {
  text-decoration: none;
  background-color: #56cc9d;
  color: #fff;
}

#sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 75px;
  height: 100vh;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container-with-sidebar {
  transition: margin-left 0.3s;
  margin-left: 85px;
  width: calc(100% - 85px);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.container-with-sidebar.active {
  margin-left: 260px;
  width: calc(100% - 260px);
  padding: 0 20px;
}

#sidebar.active {
  width: 250px;
}

#sidebarCollapse {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #56cc9d;
  color: #fff;
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: 1001;
}

.sidebar-top .navbar-brand {
  margin-top: 10px;
  margin-bottom: 20px;
  gap: 0;
}

.navbar-expand-lg .navbar-nav {
  gap: 10px;
}

.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; /* Optional: Add some space at the bottom */
}

.nav-link,
.navbar-brand {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  gap: 20px;
  height: 45px;
}

#sidebar.active .nav-link,
#sidebar.active .navbar-brand {
  justify-content: start;
}

#sidebar.active .navbar-brand {
  padding-left: 10px;
}

.navbar-brand:hover {
  background-color: transparent; /* Optional: Add hover effect */
}

/* DASHBOARD */
.dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.dashboard-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dashboard-row > .total-creditable-container,
.dashboard-row > .product-stats-container,
.dashboard-row > .column-container {
  flex: 1;
  max-width: 32%;
  box-sizing: border-box;
}

.total-creditable-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(90deg, #78c2ad 0%, #56cc9d 100%);
  color: white;
  border: none;
  padding: 20px;
  border-radius: 10px;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.widget-title {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
  width: auto;
  color: rgb(28, 27, 27);
  margin: 0;
  letter-spacing: 0.55px;
}

.widget-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.total-creditable-container .widget-title {
  color: white;
}

.total-creditable-container #dateRange {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#dateRange {
  box-sizing: border-box;
  font-size: 12px;

  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  gap: 7px;

  width: 104px;
  height: 34px;

  /* Line */
  border: 1px solid #d6d6d6;
  border-radius: 10px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  min-width: 115px;
}

#dateRange:hover {
  cursor: pointer;
}

#dateRangeSelect {
  border-radius: 10px;
  border: 1px solid #e1e2e6;
}

.total-creditable-container h1 {
  font-size: 44px;
  font-weight: 500;
  color: white;
}

.total-creditable-container h3 {
  color: white;
  margin-bottom: 0px;
}

.rounded-container {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 10px;
  gap: 5px;
  border: 1px solid RGBA(0, 0, 0, 0.3);
  background: RGBA(255, 255, 255, 0.1);
}

.rounded-container p {
  font-weight: 500;
  font-size: 14px;
}

.total-creditable-container .rounded-container {
  border: 1px solid RGBA(255, 255, 255, 0.3);
  background: RGBA(255, 255, 255, 0.1);
  width: calc(50% - 5px);
}

.total-creditable-container .row {
  gap: 0px;
}

.horizontal-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.total-creditable-container .horizontal-container p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 5px;
  font-weight: 500;
}

.total-creditable-graph {
  color: rgba(0, 0, 0, 0.2);
  width: 100%;
}

/* PRODUCT STATS */
.product-stats-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #f9f9f9;
  justify-content: space-between;
  background: white;
}

.product-stat-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  background: white;
}

.product-stats-icons {
  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.product-stats-icons.product-stats-green {
  background: rgba(96, 193, 153, 0.1);
}

.product-stats-icons.product-stats-red {
  background: rgba(255, 0, 0, 0.1);
}

.product-stats-icons.product-stats-blue {
  background: #2a86ff21;
}

.label-value-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 4px;
  font-weight: 500;
}

.label-value-column .label {
  font-size: 14px;
}

.label-value-column .value {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.rounded-container.no-border {
  border: none;
  background-color: white;
}

.column-container {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.case-analytics-container,
.ebay-liquidation-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #f9f9f9;
  background: white;
}

.case-analytics-container .horizontal-container .rounded-container,
.ebay-liquidation-container .horizontal-container .rounded-container {
  flex-direction: row;
  gap: 10px;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.analytics-label {
  font-size: 14px;
  font-weight: 500;
}

.analytics-value {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.scan-statistics-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #f9f9f9;
  background: white;
  margin-bottom: 20px;
}

.scan-statistics-container .horizontal-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

.scan-statistics-container .widget-content {
  border: 1px solid RGBA(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 10px;
}

.container-with-tabs {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: 20px;
  gap: 20px;
  background-color: white;
  padding: 10px;
}

.tabs-container {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.tab {
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid #282828;
}

/* add an underline to tabs and make the active one green */
.tab.active {
  color: black;
  font-weight: 600;
  border-bottom: 2px solid #56cc9d;
}

.tab:hover {
  color: black;
}

.product-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.product-details {
  display: flex;
  flex-direction: column;
}

#product-details {
  overflow-y: auto;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-right span {
  text-align: end;
}

/* LANDING PAGE */
.container {
  max-width: 100% !important;
  padding: 0;
  min-height: 75vh;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 100px;
  background-color: #f8f9fa;
  width: 100%;
  gap: 20px;
  max-height: 50vh;
  position: relative;
  margin-bottom: 100px;
}

.hero-content {
  flex-grow: 1;
  width: 50%;
}

.hero-content h1 {
  font-weight: 900;
  color: black;
  font-size: 58px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-button {
  padding: 15px 30px;
  background-color: #56cc9d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
}

.hero-image-container {
  position: relative;
  width: 50%;
  height: 50vh;
}

.total-creditable-container.hero-widget {
  position: absolute;
  top: 0px;
  left: 0;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.product-stats-container.hero-widget {
  position: absolute;
  bottom: -50px;
  right: -50px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.case-analytics-container.hero-widget {
  position: absolute;
  bottom: -40px;
  left: -30px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

/* Our Solution */
.our-solution {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.solution-steps {
  display: flex;
  flex-direction: column;
}

.solution-steps .step {
  display: flex;
  max-height: 50vh;
}

.solution-steps .step.row-reverse {
  flex-direction: row-reverse;
}

.our-solution {
  padding: 50px;
  text-align: center;
  background-color: #fff;
}

.our-solution h2,
.features-section h2 {
  font-size: 58px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
} */

.step-content h3,
.step-content p {
  text-align: left;
  color: #000;
}

.step-image {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-image img {
  max-width: 100%;
  height: fit-content;
  border-radius: 10px;
}

.step-content {
  max-width: 50%;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: #555;
}

.features-section {
  padding: 50px;
  text-align: center;
}

.features-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the items horizontally */
  gap: 20px; /* Space between the items */
}

.feature-item {
  width: 30%; /* Each item takes 30% of the screen width */
  background-color: #f8fdf9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon img {
  max-width: 50px;
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  color: #555;
}

/* Adjust the layout for smaller screens */
@media (max-width: 768px) {
  .feature-item {
    width: 100%; /* Each item takes full width on smaller screens */
  }
}

/* .pricing {
  background-color: #fff;
  padding: 50px;
  text-align: center;
} */

/* .pricing-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
} */

.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-button {
  background-color: #f3f4f6;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.toggle-button.active {
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
/* 
.pricing-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  text-align: left;
  transition: transform 0.3s ease;
}

.pricing-card.popular {
  background-color: #2cb67d0d;
  border: 2px solid #56cc9d;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.popular-badge {
  font-size: 12px;
  color: #56cc9d;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 10px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #2cb67d;
}

.pricing-card .price span {
  font-size: 16px;
  font-weight: normal;
  color: #888;
}

.pricing-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  position: relative;
  padding-left: 0;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: #56cc9d;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
} */

.solution-container {
  display: flex;
  margin-top: 60px;
  justify-content: center;
  flex-direction: row;
}

.solution-content {
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-content: center;
  text-align: left;
}

.solution-content h3,
.solution-content h5 {
  font-weight: 600;
}

.solution-image {
  width: 25%;
  text-align: right;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-container img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* .pricing-button:hover {
  background-color: #43b587;
}

.hero-widget,
.pricing-card:hover {
  transform: translateY(-5px);
} */

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

.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.contact-us {
  text-align: center;
}

.contact-us h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.contact-info {
  width: 100%;
  max-width: 600px;
  text-align: left;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.email-info {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.email-info svg {
  margin-right: 10px;
  color: #60c199;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

.contact-form {
  max-width: 600px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.form-group a {
  text-align: right;
  padding-bottom: 10px;
  cursor: pointer;
  width: max-content;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e1e2e6;
  border-radius: 8px;
  background-color: #f8fdf9;
  font-size: 16px;
}

.form-group input {
  margin-bottom: 10px;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-370%);
  cursor: pointer;
}

.eye-icon-signup {
  transform: translateY(45%);
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
}

.form-group textarea {
  resize: none;
}

.submit-button {
  background-color: #60c199;
  color: #fff;
  padding: 15px 80px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #4ca881;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 20px;
  }
}

/* LOGIN PAGE */

.login,
.signup {
  display: flex;
  justify-content: center;
}

.login-form {
  width: 30%;
  min-width: 400px;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff !important;
}

.signup-form .row {
  display: flex;
  gap: 0px;
}

.signup-form {
  width: 50%;
  min-width: 400px;
  max-width: 900px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff !important;
}

/* FOOTER */
.footer {
  background-color: #f8fdf9;
  padding: 50px 100px 20px 100px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-text {
  color: #333;
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    margin: 15px 0;
  }
}

/* POLICY PAGES */
.policy-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* PRODUCTs PAGE */

.search-input-group {
  display: flex;
  align-items: center;
  position: relative;
  background: white;
  width: 50%;
  padding: 0 0 0 0;
  border-radius: 10px;
  border: 1px solid #e1e2e6;
}

.search-input-group input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  background-color: transparent;
  font-size: 16px;
}

.search-input-group input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}

.search-input-group .input-group-text {
  background-color: transparent;
  border: none;
  padding: 0 10px;
  cursor: pointer;
}

.input-group-text i:hover {
  background-color: #f8fdf9;
  cursor: pointer;
}

/* Product Summary Container */
.product-summary-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

.summary-card {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.summary-card h5 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.summary-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin: 0 10px 0px 10px;
}

.summary-item {
  flex: 1;
  min-width: 80px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-title {
  text-align: center;
  font-size: 10px;
  color: #555;
  margin-bottom: 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.summary-value {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #545454;
  margin-bottom: 5px;
}

.summary-value span {
  color: #56cc9d;
}

.product-images-section .summary-card {
  margin-bottom: 10px;
}

.summary-item:first-child {
  border-right: 1px solid #f0f0f0;
}

/* change the size and font of the summary title and values of the first summary item */
.summary-item:first-child .summary-title {
  font-size: 12px;
  color: #545454;
}

.summary-item:first-child .summary-value {
  font-size: 18px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-summary-container {
    flex-direction: column;
  }
}

.product-preheader-container {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sort-and-date-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sort-by,
.date-range {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-table {
  padding: 10px;
  background: #fff;
  width: 100%;
  flex-grow: 1;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-behavior: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scrollable-tbody {
  display: block;
  min-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
}

.table {
  width: 100%; /* Ensures full width for the table */
  border-collapse: collapse; /* Optional: if you want borderless cells */
}

.table thead,
.table tbody tr {
  display: table; /* Keeps table row structure */
  table-layout: auto; /* Allows min-width to work */
}

.table thead {
  position: sticky; /* Keeps the header at the top */
  top: 10px; /* Sticks to the top */
  z-index: 1; /* Ensures header stays above rows */
  width: 100%;
  background-color: #f8f9fa; /* Background color to prevent overlap issues */
}

/* Tooltip Container */
.breakdown-tooltip {
  display: none;
  position: fixed;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  min-width: 200px;
  width: max-content;
  text-align: left;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tooltip-description {
  width: 90%;
}

.bottom-border {
  border-bottom: 2px solid #56cc9d;
}

/* Show Tooltip on Hover */
.reimbursement-amount:hover .breakdown-tooltip {
  display: block;
  opacity: 1;
}

/* Tooltip Arrow */
.breakdown-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  bottom: -6px;
}

/* When tooltip is below the element */
.breakdown-tooltip.tooltip-below::before {
  border-color: transparent transparent #ffffff transparent;
  top: -6px;
  bottom: auto;
}

/* Tooltip Content Alignment */
.tooltip-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  gap: 12px;
}

.reimbursement-amount {
  position: relative;
  cursor: pointer;
}

/* Hide scrollbar for WebKit-based browsers */
.product-table::-webkit-scrollbar {
  display: none;
}

/* Optional: Style the scrollbar for Firefox */
.product-table {
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent; /* Color of the scrollbar */
  scrollbar-width: thin; /* Width of the scrollbar */
}

.product-table .table thead th {
  text-align: start;
  font-weight: 500;
  color: #333;
  vertical-align: middle;
  background: #f8f9fa;
  margin-bottom: 5px;
  font-size: small;
  border-bottom: none;
}

/* set a border radius to the first and last items */
.product-table .table thead th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.product-table .table thead th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.product-table .table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.product-table-check {
  display: flex;
  align-items: center;
  width: 15px;
}
/* PRODUCT LIST */
.product-table-img-container {
  background: white;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  max-width: 70px;
  max-height: 70px;
  overflow: hidden;
  font-size: 10px;
}

.product-table-img-container img {
  border-radius: 8px;
}

input.buy-cost-input {
  background: none;
  border: none;
  width: fit-content;
  max-width: 100px;
  text-align: center;
}

input.buy-cost-input:focus {
  outline: none;
  border-bottom: 1px solid #56cc9d;
}

li.page-item {
  display: inline-block;
}

/* hover */

li.page-item a:hover {
  background: #56cc9d;
  color: white;
  border: 1px solid #56cc9d;
}

li.page-item.active a {
  background: #56cc9d;
  border: 1px solid #56cc9d;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.fba-action-btn {
  min-width: 126.45px;
}

.primary-link {
  background: #56cc9d;
  color: white;
  border: 1px solid #56cc9d;
}

.product-actions-dropdown {
  color: #000000;
}

.product-actions-dropdown:hover {
  color: #56cc9d;
}

.product-checkbox,
.filter-checkbox,
#selectAll {
  display: none;
}

.btn-type-two {
  background: #fff;
  color: black;
  border: 1px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-type-two:hover {
  background: #f8fdf9;
  color: #56cc9d;
  border: 1px solid #56cc9d;
}

/* Style for the custom checkbox */
.product-checkbox + label,
.filter-checkbox + label,
#selectAll + label {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #282828; /* Green border */
  border-radius: 4px; /* Rounded edges for a checkbox-like look */
  background-color: white; /* White background */
  cursor: pointer;
}

/* Checkmark */
.product-checkbox:checked + label,
.filter-checkbox:checked + label,
#selectAll:checked + label {
  background-color: #56cc9d; /* Green background */
  border: 1px solid #60aa95; /* Green border */
}

/* Styles for Product Status */
.product-status,
.case-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  width: 90%;
  min-width: 110px; /* Ensures all blocks are the same length */
  text-align: center;
  border: none;
}
.status-yellow {
  background-color: #ffe472;
  color: #8b6914;
}

.status-green {
  background-color: #56cc9d;
  color: #1e5a41;
}

.status-blue {
  background-color: #3bd1f6;
  color: #024b5e;
}

.status-red {
  background-color: #ff6b6b;
  color: white;
}

.status-gray {
  background-color: #d1d5db;
  color: #374151;
}

/* hide border on active */
.product-actions-dropdown:active,
.product-actions-dropdown:focus {
  border: none;
  color: #56cc9d;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #f8fdf9;
  color: #56cc9d;
}

/* PASSWORD RESET */

#id_email {
  width: 100%;
}

.navbar-toggler {
  background-color: #56cc9d;
}

/* MOBILE STYLES */
@media screen and (max-width: 600px) {
  .container {
    padding: 0;
  }

  /* .hero,
  .contact-us,
  .our-solution,
  .features-section,
  .pricing {
    padding: 50px 20px;
  } */

  .hero {
    max-height: none;
  }

  .hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-image-container {
    display: none;
  }

  .our-solution h2,
  .features-section h2,
  /* .pricing h2, */
  .contact-us h2 {
    font-size: 24px;
  }

  .solution-steps {
    gap: 5px;
  }

  .step {
    gap: 10px;
    padding: 5px;
  }

  .solution-steps .step .step-image {
    max-height: 30vh;
  }
  /* 
  .pricing-options {
    align-items: center;
  } */

  .email-info {
    justify-content: center;
  }

  .d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    padding: 50px 20px 20px 20px;
  }

  .footer-social {
    padding-bottom: 20px;
  }

  /* LOGIN PAGE */
  .login-form,
  .signup-form {
    min-width: auto;
    width: 100%;
    padding: 20px;
    margin: 10px;
  }
}

#productModal {
  background-color: rgba(0, 0, 0, 0.5);
}

#productModal .modal-dialog {
  width: 100%;
  max-width: 95vw;
}

@media (max-width: 768px) {
  #productModal .modal-dialog {
    max-width: 95vw;
    margin: 10px auto;
  }

  #productModal .modal-body {
    overflow-x: hidden;
  }
}

#productModal .modal-body {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0;
}
.d-flex.flex-column.gap-3 {
  margin-top: 0;
}
/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

/* Tabs Container */
.tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.nav-tabs .nav-link {
  color: #000;
}
#myTab .nav-item {
  margin-left: 10px;
}

#myTab .nav-item .nav-link.active {
  background-color: #2cb67d;
  color: white;
  font-weight: 500;
}

/* Tab Buttons */
.tab {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

/* Active Tab */
.tab.active {
  color: #56cc9d;
  font-weight: 600;
  border-bottom-color: #56cc9d;
  background-color: #f3f3f3;
}

/* Hover Effect */
.tab:hover {
  color: #34a86d;
}

/* Adjust Tab Focus for Accessibility */
.tab:focus {
  outline: none;
  border-bottom-color: #56cc9d;
}

/* Responsive Adjustment for Mobile */
@media (max-width: 768px) {
  .tabs {
    flex-wrap: wrap;
    gap: 5px;
  }

  .tab {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0;
  }
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  height: 100%;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.field-value {
  font-size: 14px;
  color: #212529;
}

.highlight-total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}

.highlight-total .field-label {
  font-size: 14px;
  color: #212529;
  font-weight: 600;
}

.highlight-total .field-value {
  font-size: 16px;
  color: #198754;
  font-weight: 600;
}

.field-input {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
}

.field-input:focus {
  border-color: #56cc9d;
  outline: none;
}

.product-view-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.product-details-section {
  flex: 0 0 60%;
  min-width: 400px;
  padding: 10px 0 0 0;
}

.product-images-section {
  flex: 0 0 40%;
  min-width: 300px;
  border-left: 1px solid #e5e7eb;
  padding: 10px;
  background-color: #f8f9fa;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .product-view-container {
    flex-direction: column;
  }

  .product-details-section,
  .product-images-section {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Mobile responsive fixes for product view */
@media (max-width: 768px) {
  .product-details-section,
  .product-images-section {
    min-width: 0 !important;
    width: 100% !important;
  }

  .product-view-container {
    overflow-x: hidden;
  }

  .product-info-container.d-flex {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-details .d-flex {
    flex-wrap: wrap;
    gap: 10px;
  }

  .field-value {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .modal-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .summary-card {
    min-width: 0;
  }

  .summary-content {
    flex-wrap: wrap;
  }

  .summary-item {
    min-width: 0;
    flex: 1 1 auto;
  }
}

.product-details .d-flex {
  gap: 20px;
}
.product-info-container.d-flex {
  padding: 10px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  border-radius: 5px;
}

.product-tab-info {
  margin: 10px;
}

.summary-row,
.status-row,
.toggle-row {
  margin-bottom: 20px;
}

.summary-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.summary-card h5 {
  margin-bottom: 15px;
  color: #333;
}

.summary-item {
  padding: 10px;
}

.summary-title {
  font-size: 0.6rem;
  color: #666;
  margin-bottom: 5px;
}

.summary-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
}

.status-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-item label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.toggle-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.toggle-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notes-section {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.notes-content {
  margin: 10px 0;
  min-height: 60px;
}

.editable-field {
  position: relative;
}

.edit-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #56cc9d;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.editable-field:hover .edit-icon {
  opacity: 1;
}

.status-badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-check-input:checked {
  background-color: #56cc9d;
  border-color: #56cc9d;
}

.return-info-container {
  margin-top: 20px;
  overflow-x: hidden;
}

.product-images-section .summary-item {
  padding: 0;
}

#dropzone-container {
  display: none;
}
.save-popup,
.success-popup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #56cc9d;
  color: white;
  padding: 15px;
  border-radius: 5px;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation:
    slideDown 0.3s ease-in,
    slideUp 0.3s ease-out 3s forwards;
}

@keyframes slideDown {
  0% {
    top: -50px;
  }
  100% {
    top: 20px;
  }
}

@keyframes slideUp {
  0% {
    top: 20px;
  }
  100% {
    top: -50px;
  }
}

/* Amazon Tooltip */
.nav-amazon-container {
  position: relative;
  cursor: pointer;
}

.amazon-tooltip {
  display: none;
  position: fixed;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  min-width: 250px;
  width: max-content;
  text-align: left;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  top: auto;
  right: auto;
  bottom: 150px;
  left: 60px;
}

/* Show Tooltip on Hover */
.nav-amazon-container:hover .amazon-tooltip {
  display: block;
  opacity: 1;
}

/* Tooltip Arrow */
.amazon-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  bottom: -8px;
}

/* When tooltip is below the element */
.amazon-tooltip.tooltip-below::before {
  border-color: transparent transparent #ffffff transparent;
  top: -8px;
  bottom: auto;
}

.amazon-tooltip .tooltip-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.amazon-tooltip .tooltip-description {
  text-align: justify;
  width: 90%;
}

.amazon-tooltip .bottom-border {
  border-bottom: 2px solid #56cc9d;
}

.nav-amazon .badge {
  transform: translate(-75%, -40%) !important;
}

/** Sort Icons */
.sort-icons {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
  color: #9a9a9a;
}

.sort-icon {
  position: absolute;
  top: 12px;
}

.sort-icons:hover {
  opacity: 0.8;
}

.sort-icon.active {
  color: #56cc9d;
}

/* Trash Icon */
.trash-icon-container {
  display: flex;
  align-items: center;
  margin-left: 0.5%;
}

.trash-icon-container button {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid white;
  border-radius: 8px;
  height: 40px;
  width: 40px;
}

.trash-icon-container button:hover {
  color: #ff6b6b;
  border-color: transparent;
}

/* Filter Icon */
.filter-icon-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
  gap: 10px;
}

.filter-icon-container button {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid white;
  border-radius: 8px;
  height: 40px;
  width: 40px;
}

.filter-icon-container button:hover {
  color: #56cc9d;
  border-color: transparent;
}

.filter-icon-container label {
  display: inline-block;
}

.fa.fa-filter {
  position: absolute;
}

.clear-filters {
  cursor: pointer;
}

/* Filter Dropdown */
.filter-dropdown-container {
  position: relative;
  right: 55px;
  top: 20px;
}

/* Mobile positioning for filter dropdown */
@media (max-width: 768px) {
  .filter-dropdown-container {
    position: absolute;
    left: 50px;
    bottom: 210px;
    right: auto;
    top: auto;
    z-index: 990;
  }
}

.applied-status-filters,
.applied-condition-filters,
.applied-case-status-filters {
  padding-left: 10px;
}

.dropdown-menu.filter-dropdown.show {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 200px;
  max-width: fit-content;
}

.dropdown-menu.condition-dropdown.show,
.dropdown-menu.status-dropdown.show,
.dropdown-menu.case-status-dropdown.show {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 250px;
}

.dropdown-item-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-item-text label i:hover {
  color: #56cc9d;
}

.dropdown-item-text label {
  color: var(--bs-dark);
  font-weight: 600;
}

.dropdown-item.main-condition-dropdown,
.dropdown-item.main-status-dropdown,
.dropdown-item.main-case-status-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-dropdown-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

#filter-badge.active {
  position: relative;
  display: block;
  top: -5px;
  right: -15px;
}

.applied-condition-filters,
.applied-status-filters,
.applied-case-status-filters {
  font-size: 10px;
  font-weight: 700;
  color: #9a9a9a;
  margin-left: auto;
  margin-right: 5px;
}

/* LANDING PAGE STYLES */

section {
  padding: 120px 120px;
}

@media screen and (max-width: 600px) {
  section {
    padding: 80px 40px;
  }

  .login,
  .signup {
    padding: 2rem 1rem;
  }

  .hero-section {
    padding: 80px 40px !important;
  }

  .hero-section h1 {
    font-size: 1.7rem !important;
  }

  .hero-section p {
    font-size: 1rem !important;
  }

  .pricing-included,
  .pricing-details {
    padding: 20px !important;
  }

  .pricing-details {
    min-width: 100% !important;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 120px;
  background: linear-gradient(180deg, #60c19939 0%, #ffffff 100%);
}

.hero-section-content {
  max-width: 900px;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111827;
}

.hero-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.button.primary {
  background-color: #60c199;
  color: white;
}

.button.primary:hover {
  background-color: #4ea87e;
}

.button.secondary {
  background-color: #f5f5f5;
  color: #1d1d1d;
  border: 1px solid #dcdcdc;
}

.button.secondary:hover {
  background-color: #eaeaea;
}

.steps-section {
  text-align: center;
  background: linear-gradient(180deg, #f9fdf9 0%, #e8f8f1 100%);
}

.steps-section h2,
.pricing-section h2 {
  color: #60c199;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.steps-section h3 {
  font-size: 2rem;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.steps-description {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  max-width: max(250px, 23%);
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #60c199;
  border-radius: 50%;
}

.step-icon img {
  width: 30px;
  height: 30px;
}

.step h4 {
  font-size: 1.2rem;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.why-choose-us {
  text-align: center;
  background: linear-gradient(180deg, #f9fdf9 0%, #e8f8f1 100%);
}

.why-choose-us h2 {
  color: #60c199;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-choose-us h3 {
  font-size: 2rem;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.why-description {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  max-width: max(250px, 23%);
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #60c199;
  border-radius: 50%;
}

.feature-icon img {
  width: 25px;
  height: 25px;
}

.feature h4 {
  font-size: 1.2rem;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.pricing-section {
  text-align: center;
  background: linear-gradient(180deg, #f9fdf9 0%, #e8f8f1 100%);
}

.pricing-section h3 {
  font-size: 2rem;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.pricing-description {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: stretch;
}

.pricing-included {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 60%;
  box-sizing: border-box;
}

.pricing-included h3,
.pricing-details h3 {
  color: #61c199;
  margin-bottom: 30px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-included ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-included li {
  text-align: left;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.pricing-included li span {
  color: #60c199;
  font-weight: bold;
  margin-right: 10px;
}

.pricing-details {
  width: 30%;
  background: #164c43;
  border-radius: 10px;
  padding: 40px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
}

.pricing-item {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-radius: 8px;
  background: #61c19910;
  padding: 20px;
  font-weight: bold;
}

.pricing-item h4 {
  font-size: clamp(1rem, 4.5vw, 2.3rem);
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

.pricing-item p {
  font-size: 1rem;
  margin: 0;
  color: #bbbbbb;
}

.pricing-button {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #60c199;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.pricing-button:hover {
  background-color: #4ea87e;
}

.pricing-note {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-top: 10px;
}

/* MISCELANEOUS  */

div#loom-companion-mv3 {
  display: none !important;
}

/* Billing Page Styles */
.billing-summary-card .card-body {
  padding: 1.5rem;
}

.billing-summary-card h6 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.billing-summary-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.billing-summary-card small {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Billing Table Styles */
.billing-table {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.billing-table .table {
  margin-bottom: 0;
}

.billing-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.billing-table td {
  padding: 1rem;
  vertical-align: middle;
}

.billing-table tbody tr {
  transition: background-color 0.2s ease;
}

.billing-table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Period Selector Styles */
.period-selector {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.5rem;
  transition: all 0.2s ease;
}

.period-selector:focus {
  border-color: #56cc9d;
  box-shadow: 0 0 0 0.2rem rgba(86, 204, 157, 0.25);
}

.custom-date-range {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.custom-date-range input[type='date'] {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.375rem 0.75rem;
}

.custom-date-range button {
  background-color: #56cc9d;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.375rem 1rem;
  transition: background-color 0.2s ease;
}

.custom-date-range button:hover {
  background-color: #4bb589;
}

/* Status Badge Styles */
.status-badge {
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 0.25rem;
}

.status-badge.paid {
  background-color: #56cc9d;
  color: white;
}

.status-badge.processing {
  background-color: #ffc107;
  color: #000;
}

.status-badge.overdue {
  background-color: #dc3545;
  color: white;
}

/* Highlight required image types */
.required-for-case {
  font-weight: bold;
  color: #56cc9d;
}

select option.required-for-case {
  background-color: #e6f2ff;
}

/* Style the note about required images */
.form-text.text-muted ul {
  margin-top: 5px;
  padding-left: 20px;
}

.form-text.text-muted li {
  font-weight: bold;
  color: #56cc9d;
}

.dropzones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 16px;
  margin-top: 20px;
}

.dropzone-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.dropzone-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.dropzone-title {
  padding: 10px 12px;
  margin: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  text-align: center;
  font-size: 0.85rem;
  color: #374151;
}

.required-title {
  background-color: #f0fbf4;
  color: #56cc9d;
  font-weight: bold;
  border-bottom: 1px solid #def4eb;
}

.dropzone {
  height: 120px;
  padding: 10px;
  border: 2px dashed #e0e0e0;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.dropzone:hover {
  border-color: #56cc9d;
  background-color: #f9fdf9;
}

.dropzone-content {
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropzone:hover .dropzone-content {
  transform: scale(1.05);
}

.dropzone-content i {
  font-size: 1.8rem;
  color: #56cc9d;
  margin-bottom: 8px;
  opacity: 0.8;
}

.dropzone-content p {
  margin: 0 0 5px;
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
}

.dropzone-hint {
  font-size: 0.7rem;
  color: #56cc9d;
  font-style: italic;
}

.dropzone.dragover {
  border-color: #56cc9d;
  background-color: #f0fbf4;
}

.dropzone-loading,
.dropzone-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  border-radius: 0 0 8px 8px;
}

.dropzone-loading i {
  font-size: 2rem;
  color: #56cc9d;
}

.dropzone-success {
  background-color: rgba(86, 204, 157, 0.15);
}

.dropzone-success i {
  font-size: 2rem;
  color: #56cc9d;
}

.dropzone-error {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  background-color: #fff1f1;
  color: #e53e3e;
  border-radius: 6px;
  border-left: 3px solid #e53e3e;
}

.no-images-message {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
  color: #6b7280;
}

.no-images-message i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #d1d5db;
}

.no-images-message p {
  margin: 0;
  font-size: 0.9rem;
}

.dropzone-header {
  margin-bottom: 20px;
}

.dropzone-header h5 {
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

.file-name-preview {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: #4b5563;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3px 5px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropzone-loading span,
.dropzone-success span {
  display: block;
  font-size: 0.75rem;
  margin-top: 5px;
  font-weight: 500;
}

.pulse {
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.selected-files {
  background-color: #f0fbf4;
  border-color: #56cc9d;
}

.active-upload {
  background-color: #56cc9d !important;
  color: white !important;
  border-color: #56cc9d !important;
}

.being-replaced {
  opacity: 0.6 !important;
  border-color: #ffc107 !important;
  position: relative;
}

.replacement-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 20;
  border-radius: 10px;
}

.replacement-message i {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 8px;
  animation: spin 1.5s linear infinite;
}

.replacement-note {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: #6b7280;
  background-color: rgba(255, 193, 7, 0.2);
  padding: 3px 5px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* New compact dropzones layout */
.compact-dropzones-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.dropzone-section {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e5e7eb;
}

.section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e7eb;
}

.toggle-additional {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-additional i {
  transition: transform 0.3s ease;
}

.toggle-additional.active i {
  transform: rotate(180deg);
}

.dropzone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.additional-views {
  display: none;
}

.collapsible.active .additional-views {
  display: flex;
}

.dropzone-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.dropzone-wrapper.compact {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
}

.dropzone-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.dropzone-title {
  padding: 8px 10px;
  margin: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  text-align: center;
  font-size: 0.75rem;
  color: #374151;
}

.required-title {
  background-color: #f0fbf4;
  color: #56cc9d;
  font-weight: bold;
  border-bottom: 1px solid #def4eb;
}

.dropzone {
  height: 90px;
  padding: 8px;
  border: 2px dashed #e0e0e0;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.dropzone:hover {
  border-color: #56cc9d;
  background-color: #f9fdf9;
}

.dropzone-content {
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropzone:hover .dropzone-content {
  transform: scale(1.05);
}

.dropzone-content i {
  font-size: 1.5rem;
  color: #56cc9d;
  margin-bottom: 5px;
  opacity: 0.8;
}

.dropzone-content p {
  margin: 0;
  font-size: 0.7rem;
  color: #4b5563;
  font-weight: 500;
}

.dropzone-hint {
  font-size: 0.65rem;
  color: #56cc9d;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dropzone-row {
    flex-direction: column;
  }

  .dropzone-wrapper.compact {
    max-width: 100%;
  }
}

/* Single Dropzone with Type Selection */
.single-dropzone-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.image-type-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-type-selector label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
}

.form-select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background-color: #fff;
  font-size: 0.9rem;
  color: #374151;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-select:focus {
  border-color: #56cc9d;
  box-shadow: 0 0 0 3px rgba(86, 204, 157, 0.2);
  outline: none;
}

.form-select option {
  padding: 8px;
}

.form-select option[data-exists='true'] {
  font-weight: 600;
}

.form-select option.required-for-case {
  font-weight: bold;
  color: #0d6efd;
}

.replacement-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #fff8e6;
  border: 1px solid #ffeeba;
  border-radius: 6px;
  color: #856404;
  font-size: 0.85rem;
  margin-top: 8px;
}

.replacement-warning i {
  color: #ffc107;
}

.main-dropzone {
  height: 180px;
  padding: 20px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.main-dropzone:hover {
  border-color: #56cc9d;
  background-color: #f9fdf9;
}

.main-dropzone.dragover {
  border-color: #56cc9d;
  background-color: #f0fbf4;
  transform: scale(1.01);
}

.main-dropzone.no-type-selected {
  border-color: #ffc107;
  background-color: #fff8e6;
}

.main-dropzone .dropzone-content {
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-dropzone:hover .dropzone-content {
  transform: scale(1.05);
}

.main-dropzone .dropzone-content i {
  font-size: 2.5rem;
  color: #56cc9d;
  margin-bottom: 15px;
  opacity: 0.8;
}

.main-dropzone .dropzone-content p {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #4b5563;
  font-weight: 500;
}

.main-dropzone .dropzone-hint {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 5px;
}

#selected-type-display {
  font-weight: 600;
  color: #56cc9d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .single-dropzone-wrapper {
    padding: 15px;
  }

  .main-dropzone {
    height: 150px;
  }

  .main-dropzone .dropzone-content i {
    font-size: 2rem;
  }

  .main-dropzone .dropzone-content p {
    font-size: 0.9rem;
  }
}

/* Mobile responsive sidebar styles */
@media (max-width: 992px) {
  #sidebar {
    width: 55px;
  }

  .container-with-sidebar {
    margin-left: 65px;
    width: calc(100% - 65px);
  }

  #sidebar.active {
    width: 200px;
  }

  .container-with-sidebar.active {
    margin-left: 210px;
    width: calc(100% - 210px);
  }
}

@media (max-width: 768px) {
  #sidebar {
    width: 100%;
    height: 60px;
    bottom: auto;
    top: 0;
    flex-direction: row;
    justify-content: space-around;
  }

  #sidebar.active {
    width: 100%;
    height: 60px;
  }

  #productHeader,
  #shipmentHeader,
  #billingHeader,
  #accountContainer,
  #emailMgtHeader {
    margin-top: 70px !important;
  }

  .container-with-sidebar {
    margin-left: 0;
    width: 100%;
    margin-bottom: 120px;
  }

  .container-with-sidebar.active {
    margin-left: 0;
    width: 100%;
  }

  .sidebar-top,
  .sidebar-bottom {
    flex-direction: row;
    margin: 0;
  }

  .sidebar-top {
    width: 50%;
    justify-content: space-around;
  }

  .sidebar-bottom {
    width: 50%;
    justify-content: space-around;
  }

  .sidebar-top .navbar-brand {
    display: none;
  }

  .nav-link,
  #sidebar.active .nav-link {
    padding: 5px;
    height: 60px;
    justify-content: center;
  }

  #sidebarCollapse {
    display: none;
  }

  .nav-amazon-container .amazon-tooltip {
    bottom: 60px;
    top: auto;
    left: 0;
    right: auto;
  }

  .amazon-tooltip::before {
    top: auto;
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-color: white transparent transparent transparent;
  }
}

@media (max-width: 576px) {
  .sidebar-top {
    width: 45%;
  }

  .sidebar-bottom {
    width: 55%;
  }

  .nav-link,
  #sidebar.active .nav-link {
    padding: 3px;
    gap: 3px;
  }
}

@media (max-width: 400px) {
  .sidebar-top {
    width: 45%;
  }

  .sidebar-bottom {
    width: 55%;
  }

  #sidebar {
    height: 55px;
  }

  #sidebar.active {
    height: 55px;
  }

  .container-with-sidebar {
    margin-bottom: 55px;
  }

  .nav-link,
  #sidebar.active .nav-link {
    padding: 2px;
    gap: 2px;
    height: 55px;
  }

  #nav-products i,
  #nav-shipments i,
  #nav-billing i,
  #nav-announcements i,
  #nav-amazon i,
  #nav-admin-statistics i,
  #nav-lpn-lookup i,
  #nav-email-management i,
  #nav-location-management i,
  #nav-statements i,
  #nav-claim-rules i,
  #nav-liquidations i,
  #nav-warehouse-fulfillments i,
  #nav-create-fba-shipments i,
  #nav-profile i,
  #nav-signout i {
    font-size: 18px;
  }
}

/* Tooltip Content Alignment */
.tooltip-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  gap: 12px;
}

.reimbursement-amount {
  position: relative;
  cursor: pointer;
}

/* Amazon Eligibility Tooltip */
.amazon-eligibility-badge {
  position: relative;
  cursor: pointer;
  color: #6b7280;
  text-decoration: underline;
  font-size: 0.8rem;
  margin-left: auto;
}

.amazon-eligibility-tooltip {
  display: none;
  position: fixed;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  min-width: 320px;
  width: max-content;
  text-align: left;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.amazon-eligibility-badge:hover .amazon-eligibility-tooltip {
  display: block;
  opacity: 1;
}

/* Amazon Eligibility Tooltip Arrow */
.amazon-eligibility-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  bottom: -6px;
}

/* When tooltip is below the element */
.amazon-eligibility-tooltip.tooltip-below::before {
  border-color: transparent transparent #ffffff transparent;
  top: -6px;
  bottom: auto;
}

/* Amazon Eligibility Tooltip Specific Styling */
.amazon-eligibility-tooltip .tooltip-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 0;
  gap: 8px;
}

.amazon-eligibility-tooltip .criteria-icon {
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.amazon-eligibility-tooltip .criteria-icon.met {
  color: #10b981;
}

.amazon-eligibility-tooltip .criteria-icon.not-met {
  color: #ef4444;
}

.amazon-eligibility-tooltip .tooltip-header {
  font-weight: 600;
  border-bottom: 2px solid #56cc9d;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.amazon-eligibility-tooltip .criteria-text {
  font-size: 13px;
  line-height: 1.4;
}

/* Grading Scale Tooltip */
.grading-scale-badge {
  position: relative;
  cursor: pointer;
  color: #6b7280;
  text-decoration: underline;
  font-size: 0.8rem;
  margin-left: auto;
}

.grading-scale-tooltip {
  display: none;
  position: fixed;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  min-width: 280px;
  width: max-content;
  text-align: left;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.grading-scale-badge:hover .grading-scale-tooltip {
  display: block;
  opacity: 1;
}

/* Grading Scale Tooltip Arrow */
.grading-scale-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  bottom: -6px;
}

/* When tooltip is below the element */
.grading-scale-tooltip.tooltip-below::before {
  border-color: transparent transparent #ffffff transparent;
  top: -6px;
  bottom: auto;
}

.grading-scale-tooltip .tooltip-header {
  font-weight: 600;
  border-bottom: 2px solid #56cc9d;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
