<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Toolbox Button Styles */
.tool-button-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
  }
  
  .toolbox-dropdown {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .toolbox-dropdown.show {
    display: block;
  }
  
  .toolbox-dropdown button {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    width: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .toolbox-dropdown button i {
    font-size: 18px;
    width: 24px;
    text-align: center;
  }
  
  .toolbox-dropdown button:hover {
    background-color: #f1f1f1;
  }
  
  /* Dark mode adjustments */
  .dark-mode .toolbox-dropdown {
    background-color: #2d3748;
    border: 1px solid #4a5568;
  }
  
  .dark-mode .toolbox-dropdown button {
    color: #f1f5f9;
  }
  
  .dark-mode .toolbox-dropdown button:hover {
    background-color: #4a5568;
  }
  
  .tool-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #6d50ba, #9a75ff);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border: none;
  }
  
  .tool-button:hover {
    background: linear-gradient(135deg, #9a75ff, #6d50ba);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .tool-button:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 600px) {
    .tool-button {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }
  
    .toolbox-dropdown {
      min-width: 200px;
    }
  
    .toolbox-dropdown button {
      padding: 10px 14px;
      font-size: 13px;
    }
  }
  
  /* Active state for buttons */
  .toolbox-dropdown button.active {
    background-color: #f0f0f0;
    font-weight: bold;
  }
  
  .dark-mode .toolbox-dropdown button.active {
    background-color: #3a4a5e;
  }
  
  /* Badge for new features */
  .feature-badge {
    background-color: #e74c3c;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: bold;
  }
  
  </pre></body></html>