
	body {
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.tool-wrapper {
	background-color: var(--bg);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
	overflow: hidden; /* Works in all browsers including IE */
	display: flow-root; /* Modern browsers will use this if supported */
}
.tool-container {
      position: relative;
      max-width: var(--max-width);
      padding: var(--padding-vertical) var(--padding-horizontal);
}  

/* Main Layout */
.word-counter-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: start;
  min-height: 600px;
}

/* Input Panel */
.input-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  height: fit-content;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.panel-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}

/* Word Counter Action Buttons - Unique Classes */
.wc-action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wc-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--text-medium);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    margin: 0;
    height: 40px;
    min-width: 80px;
    line-height: 1;
}

.wc-action-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.wc-action-btn:active {
    transform: translateY(0);
}

.wc-action-btn:disabled {
    background: var(--bg-secondary);
    color: var(--text-light);
    border-color: var(--border);
    cursor: not-allowed;
    transform: none;
}

.wc-action-btn:disabled:hover {
    background: var(--bg-secondary);
    color: var(--text-light);
    border-color: var(--border);
}

.wc-svg-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.svg-icon {
  width: 18px;
  height: 18px;
}

.wc-btn-text {
    line-height: 1;
    margin: 0;
    padding: 0;
	transform: translateY(1.4px); /* Fine-tune vertical alignment */
}

/* Success state for copy button */
.wc-action-btn.wc-success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-color: #27ae60;
}

.wc-action-btn.wc-success .wc-svg-icon {
    color: #27ae60;
}

/* Active state for paste button */
.wc-action-btn.wc-active {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.text-input-container {
  padding: 30px;
}

#textInput {
  width: 100%;
  min-height: 400px;
  padding: 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  resize: vertical;
  transition: var(--transition);
  margin-bottom: 20px;
  box-sizing: border-box;
}

#textInput:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

#textInput::placeholder {
  color: var(--text-light);
}

.text-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.text-info {
  color: var(--text-light);
  font-size: 14px;
}

/* Stats Panel */
.stats-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  height: auto;
}

.stats-panel::-webkit-scrollbar {
  width: 6px;
}

.stats-panel::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 3px;
}

.stats-panel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.stats-panel::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Quick Stats */
/* Header with icon styles */
.header-title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 24px;
    height: 24px;
    color: var(--text);
    flex-shrink: 0;
}
/* Add to your existing CSS */
.stat-number.large-number {
    font-size: 1.3rem !important;
}

/* For very large numbers in circles */
.stat-number {
    transition: font-size 0.3s ease;
}
/* Fixed Circle Styles */
.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 15px 30px;
    border-bottom: 1px solid var(--border-light);
}

.stat-circle {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 60px;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 85px; /* Reduced from 90px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px; /* Reduced padding */
    box-sizing: border-box;
}

.stat-number {
    display: block;
    font-size: 1.3rem; /* Reduced from 1.8rem */
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 2px; /* Reduced margin */
    min-height: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    font-feature-settings: "tnum"; /* Use tabular numbers */
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem; /* Slightly smaller */
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .circle-content {
        width: 80px;
    }
}

/* For very large numbers, we'll use a compact font */
.stat-number.compact {
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.circle-svg {
    transform: rotate(-90deg);
    flex-shrink: 0;
}

.circle-bg {
    fill: none;
    stroke: var(--bg-secondary);
    stroke-width: 3;
}

.circle-progress {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.stat-circle.primary .circle-progress {
    stroke: var(--primary);
}

.stat-circle.secondary .circle-progress {
    stroke: var(--secondary);
}

/* Ensure proper circle sizing */
.stat-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.circle-svg {
    width: 100px;
    height: 100px;
}


/* Detailed Stats Grid */
.detailed-stats-grid {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  gap: 15px;
  min-height: auto;
  overflow: visible;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  min-height: 70px;
  box-sizing: border-box;
}

.stat-item:hover {
  transform: translateX(5px);
  background: var(--primary-light);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
}

.stat-icon .svg-icon {
  width: 18px;
  height: 18px;
}

.stat-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-title {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Advanced Metrics */
.advanced-metrics {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-light);
}

.advanced-metrics h3 {
  margin: 0 0 20px 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.metric-card {
  background: var(--bg-secondary);
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.info-icon {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  cursor: help;
  flex-shrink: 0;
  margin-left: 5px;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.2;
}

/* Word Frequency */
.word-frequency {
  padding: 25px 30px;
}

.frequency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.frequency-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.frequency-count {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 12px;
}

.frequency-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100px;
}

.frequency-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.frequency-bar:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

.frequency-word {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  min-width: 80px;
  flex-shrink: 0;
}

.frequency-bar-container {
  flex: 1;
  background: var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  height: 8px;
}

.frequency-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  transition: width 0.6s ease;
}

.frequency-count {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  min-width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
  color: var(--text-light);
  text-align: center;
}

.no-data .svg-icon {
  width: 40px;
  height: 40px;
  color: var(--border);
}

/* Animation for value updates */
.stat-value.updating {
  animation: pulseUpdate 0.6s ease;
}

@keyframes pulseUpdate {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* File upload drag & drop */
.file-upload-wrapper.drag-over {
  background: var(--primary-light);
  border-color: var(--primary);
}

/* Error Message Styles */
.error-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.error-message .svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.error-message span {
  font-weight: 500;
}

/* Success Message Styles */
.success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.success-message .svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.success-message span {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .word-counter-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-panel {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {

  .panel-header {
    padding: 20px;
    gap: 15px;
    align-items: stretch;
  }
  
  .wc-action-buttons {
    justify-content: center;
    width: 100%;
  }
   

  
  .text-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .text-input-container {
    padding: 20px;
  }
  
  #textInput {
    min-height: 300px;
  }
  
  .detailed-stats-grid {
    padding: 20px;
  }
  
  .stat-item {
  gap: 0;

}
}

@media (max-width: 480px) {

  .wc-action-buttons {
    flex-direction: column;
  }
  
  .wc-action-btn {
    justify-content: center;
    width: 100%;
  }
  
  .detailed-stats-grid {
    padding: 15px;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }
  

  
  .frequency-word {
    min-width: auto;
  }
  
  .metric-card {
    min-height: 70px;
  }
}

/* Dark mode adjustments */
.dark-mode .input-panel,
.dark-mode .stats-panel {
  background: var(--white);
}

.dark-mode .panel-header {
  background: var(--bg-secondary);
}

.dark-mode .stat-item,
.dark-mode .metric-card {
  background: var(--bg-secondary);
}

.dark-mode #textInput {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.dark-mode .circle-bg {
  stroke: var(--border-light);
}

.dark-mode .error-message {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.3);
}

.dark-mode .success-message {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.dark-mode .wc-action-btn {
  background: var(--white);
  color: var(--text-medium);
  border-color: var(--border);
}

.dark-mode .wc-action-btn:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}


/* Responsive improvements for small screens */
@media (max-width: 1024px) {
  .word-counter-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-panel {
    position: static;
    max-height: none;
  }
  
  .detailed-stats-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
}

@media (max-width: 768px) {
  
  /* Panel Header improvements */
  .panel-header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .stats-panel .panel-header {
    padding: 20px;
    flex-direction: unset;
    gap: 15px;
    align-items: stretch;
  }
  
  .header-title-with-icon {
    justify-content: center;
    text-align: center;
  }
  
  .wc-action-buttons {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .wc-action-btn {
    flex: 1;
    min-width: 0;
    max-width: 120px;
  }
  
  .wc-btn-text {
    font-size: 0.85rem;
  }
  
  /* Quick Stats improvements */
  .quick-stats {
    gap: 20px;
    padding: 20px;
  }
  
  .stat-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  
  .circle-svg {
    width: 100px;
    height: 100px;
  }
  
  .circle-content {
    width: 80px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  

  
  .text-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .text-input-container {
    padding: 20px;
  }
  
  #textInput {
    min-height: 300px;
  }
  
  .advanced-metrics {
  padding: 25px 20px;
}
  
   .advanced-metrics, .word-frequency {
  padding: 25px 20px;
} 
  
}

@media (max-width: 480px) {

  /* Panel Header mobile optimizations */
  .stats-panel .panel-header {
	flex-direction: unset;
    padding: 15px;
    gap: 12px;
  }
  
  .header-title-with-icon h2 {
    font-size: 1.2rem;
  }
  
  .wc-action-buttons {
    flex-direction: row;
    gap: 8px;
  }
  
  .wc-action-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    height: 36px;
  }
  
  .wc-btn-text {
    font-size: 0.8rem;
  }
  
  .wc-svg-icon {
    width: 14px;
    height: 14px;
  }
  
  /* Quick Stats mobile optimizations */
  .quick-stats {
    padding: 15px;
    gap: 15px;
  }
  

  
  
  .circle-content {
    width: 75px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  /* Detailed stats mobile improvements */
  .detailed-stats-grid {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .stat-item {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    min-height: 60px;
    padding: 12px;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
  }
  
  .stat-icon .svg-icon {
    width: 16px;
    height: 16px;
  }
  
  .stat-value {
    font-size: 1.2rem;
  }
  
  .stat-title {
    font-size: 0.8rem;
  }
  
  /* Frequency bars mobile */
  .frequency-bar {
    gap: 8px;
    padding: 10px;
  }
  
  .frequency-word {
    min-width: auto;
    text-align: center;
  }
  
  .metric-card {
    min-height: 70px;
    padding: 12px;
  }
  .text-input-container {
    padding: 13px;
  }
  .live-badge {
    align-self: center;
    margin-top: 5px;
  }
  

}

/* Extra small devices (phones under 360px) */
@media (max-width: 360px) {
  .panel-header {
    padding: 12px;
  }
  
    /* Panel Header mobile optimizations */
  .stats-panel .panel-header {
	flex-direction: column;
    padding: 15px;
    gap: 12px;
  }
  
  .wc-action-buttons {
    flex-direction: column;
  }
  
  .wc-action-btn {
    max-width: none;
    width: 100%;
  }
  
  .quick-stats {
    grid-template-columns: 1fr;
  }
  

  
  
  .circle-content {
    width: 70px;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  /* Advanced Metrics */
.advanced-metrics, .word-frequency {
  padding: 25px 20px;
}

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .wc-action-btn,
  .btn-outline,
  .stat-item,
  .metric-card,
  .frequency-bar {
    min-height: 44px; /* Minimum touch target size */
  }
  
  /* Ensure proper spacing for stacked layout */
  .word-counter-layout > * {
    margin-bottom: 20px;
  }
  
  .word-counter-layout > *:last-child {
    margin-bottom: 0;
  }
}









/* Technical Section */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-icon {
    margin-bottom: 1rem;
}

.tech-icon .svg-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.tech-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.tech-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Benchmarks Section */
.benchmarks-table {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.benchmark-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.benchmark-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.benchmark-row:last-child {
    border-bottom: none;
}

.savings-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.savings-badge.success {
    background: var(--success-light);
    color: var(--success-color);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.industry-icon {
    margin-bottom: 1rem;
}

.industry-icon .svg-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.industry-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* Formats Section */
.formats-content {
    margin-top: 3rem;
}

.formats-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.format-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.format-category ul {
    list-style: none;
    padding: 0;
}

.format-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.format-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.compatibility-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--success-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--success-color);
}

.compatibility-icon .svg-icon {
    width: 48px;
    height: 48px;
    color: var(--success-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .benchmark-header,
    .benchmark-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .compatibility-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .technical-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}