/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  textarea {
    width: 95%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
    margin-bottom: 10px;
  }
  
  /* Slider Styles */
  .sliderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .sliderLabel {
    margin-right: 10px;
    font-size: 14px;
    text-transform: lowercase;
    transition: color 0s, transform 0.0s, font-style 0.0s, font-weight 0.0s;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .sliderRound {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 28px;
    transition: .4s;
  }
  
  .sliderRound:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
  }
  
  input:checked + .sliderRound {
    background-color: #2196F3;
  }
  
  input:checked + .sliderRound:before {
    transform: translateX(24px);
  }
  
  /* Table Styles */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
  }
  
  th {
    background-color: #f0f0f0;
  }
  
  .duplicate-item {
    font-style: italic;
    font-size: 0.9em;
  }
  
  /* Emphasis Styles */
  .emphasized {
    color: #DC4C64; /* Distinct color to indicate warning */
    font-weight: bold;
    font-style: normal;
  }
  
  .italicized {
    /*font-style: italic;*/
    font-weight: normal;
    color: #747474
  }
  
  /* Loading Spinner (Optional Enhancement) */
  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 2s linear infinite;
    margin-left: 10px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .hidden {
    display: none;
  }
  