/* LC-MS Page Styles */

.lcms-section {
  padding: 3vw 6vw;
  background-color: #ffffff;
}

.lcms-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #475569;
}

.lcms-category {
  margin-bottom: 3vw;
}

.lcms-title {
  color: var(--brand-blue);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  margin-bottom: 1.5vw;
  border-bottom: 0.2vw solid var(--brand-orange);
  display: inline-block;
  padding-bottom: 0.5vw;
}

.lcms-description {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  margin-bottom: 2vw;
}

.lcms-features, .lcms-applications {
  margin-bottom: 2vw;
}

.lcms-subtitle {
  color: var(--brand-blue);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  margin-bottom: 1vw;
}

.lcms-list {
  list-style-type: none;
  padding-left: 0;
}

.lcms-list li {
  font-size: clamp(15px, 1.05vw, 17px);
  margin-bottom: 0.8vw;
  position: relative;
  padding-left: 1.5vw;
}

.lcms-list li::before {
  content: '\2022';
  color: var(--brand-orange);
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -0.2em;
}

/* Polished Table UI */
.lcms-table-wrapper {
  margin-top: 3vw;
  overflow-x: auto;
  border-radius: 8px; /* subtle radius */
  box-shadow: 0 4px 15px rgba(0, 58, 93, 0.05); /* very soft shadow */
  border: 1px solid rgba(0, 58, 93, 0.1);
}

.lcms-data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.lcms-data-table th, 
.lcms-data-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: clamp(14px, 1.05vw, 16px);
}

.lcms-data-table th {
  background-color: var(--brand-blue);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05vw;
  border-bottom: 2px solid var(--brand-orange); /* nice orange accent under blue header */
}

.lcms-data-table td {
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.lcms-data-table td:first-child {
  font-weight: 600;
  color: var(--brand-blue);
}



/* Zebra striping but very subtle */
.lcms-data-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.lcms-data-table tbody tr:last-child td {
  border-bottom: none;
}

.lcms-data-table tbody tr:hover td {
  background-color: #f1f5f9;
}

@media (max-width: 720px) {
  .lcms-data-table {
    display: block;
  }
  .lcms-data-table th, .lcms-data-table td {
    font-size: 14px;
    padding: 12px 16px;
    min-width: 120px;
  }
  .lcms-list li {
    padding-left: 5vw;
  }
}
