.incoterms-section {
  font-family: "DM Sans", sans-serif;
  padding: 40px 0;
  background-color: #f8f9fa;
}

.incoterms-content {
  width: 100%;
  text-align: center;
}

.incoterms-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
}

.incoterms-content h1 span {
  color: rgb(246, 0, 2);
}

.incoterms-table {
  margin-top: 30px;
  overflow-x: auto;
}

.incoterms-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.incoterms-table th,
.incoterms-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 8px;
  text-align: center;
}

.incoterms-table th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.incoterms-table .seller {
  background-color: #e6f3ff;
}

.incoterms-table .buyer {
  background-color: #fff0f0;
}

.incoterms-table tr:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .incoterms-content h1 {
    font-size: 36px;
  }

  .incoterms-table {
    font-size: 12px;
  }
  
  .incoterms-table th,
  .incoterms-table td {
    padding: 8px 4px;
  }
}
.container-spec-section {
  font-family: "DM Sans", sans-serif;
  padding: 40px 0;
  background-color: #f8f9fa;
}

.container-spec-content {
  width: 100%;
  text-align: center;
}

.container-spec-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
}

.container-spec-content h1 span {
  color: rgb(246, 0, 2);
}

.container-spec-table {
  margin-top: 30px;
  overflow-x: auto;
}

.container-spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.container-spec-table th,
.container-spec-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 8px;
  text-align: center;
}

.container-spec-table .td-heading {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.container-spec-table .white-bg {
  background-color: #fff;
}

.container-spec-table img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.container-spec-table tr:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .container-spec-content h1 {
    font-size: 36px;
  }

  .container-spec-table {
    font-size: 12px;
  }
  
  .container-spec-table th,
  .container-spec-table td {
    padding: 8px 4px;
  }
}
/* Active dropdown item text color without background */
.dropdown-menu .dropdown-item.active {
  color: #f60002; /* Set the text color to your desired active color */
  background-color: transparent; /* Ensure no background color is applied */
}

/* When hovering or focusing on the dropdown item, maintain no background */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: transparent;
  color: #f60002; /* Keep the text color same on hover or focus */
}
