/* Advanced Text Editor - Styles */

.ate-toolbar {
    background: #f2f2f2;
    border: 1px solid #ccc;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .ate-toolbar button.ate-btn {
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 3px;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s;
  }
  
  .ate-toolbar button.ate-btn:hover {
    background: #e6e6e6;
    border-color: #888;
  }
  
  .ate-toolbar input.ate-color-picker {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  .ate-editor {
    border: 1px solid #ccc;
    min-height: 250px;
    padding: 10px;
    margin-top: 5px;
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
    overflow: auto;
  }
  
  .ate-editor:focus {
    outline: none;
    border-color: #66afe9;
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
  }
  
  .ate-html-view {
    border: 1px solid #ccc;
    font-family: monospace;
    font-size: 13px;
    padding: 10px;
    margin-top: 5px;
    resize: vertical;
  }
  