/* Compare Text/Code Differences Styles */
.text-comparer .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .comparer-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .left-editor-container,
  .right-editor-container {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .left-editor-container h3,
  .right-editor-container h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .ace_editor {
    width: 100%;
    height: 300px;
    border-radius: 5px;
  }
  
  .editor-stats {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .comparer-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .comparer-toolbar button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .comparer-toolbar button:hover {
    background-color: var(--primary-hover-color);
  }
  
  .delete-icon {
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: color 0.3s ease;
  }
  
  .delete-icon:hover {
    color: var(--primary-color);
  }
  
  .results-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .results-container h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
  }
  
  .comparison-results {
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    min-height: 100px;
    overflow-y: auto;
  }
  
  .comparison-results span.added {
    color: green;
  }
  
  .comparison-results span.removed {
    color: red;
  }
  
  .comparison-results span.unchanged {
    color: black;
  }
  /* Introduction Section Styles */
.comparer-intro {
  background-color: #f9f9f9;
  padding: 40px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.comparer-intro .intro-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.comparer-intro .intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.comparer-intro .intro-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.comparer-intro .intro-list li {
  margin-bottom: 10px;
  color: #555;
}

/* Subtitle for Uses of the Tool */
.comparer-intro .intro-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

/* List Styling for Uses of the Tool */
.comparer-intro .intro-list li strong {
  color: var(--primary-hover-color);
  font-weight: bold;
}

.comparer-intro .intro-list li {
  margin-bottom: 8px;
}