.editor-container {
      margin-bottom: 20px;
    }
    
    .editor-toolbar {
      background-color: #2a2a2a;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }
    
    .editor-toolbar button {
      color: #adb5bd;
      transition: color 0.2s, background-color 0.2s;
    }
    
    .editor-toolbar button:hover {
      color: white;
      background-color: #495057;
    }
    
    .editor-content {
      background-color: #212529 !important;
      border-color: #495057 !important;
      resize: vertical;
    }
    
    .editor-content:focus {
      box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
    }
    
    #editor img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 10px auto;
      border-radius: 4px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
    
    #editor table {
      border-collapse: collapse;
      width: 100%;
      margin: 10px 0;
    }
    
    #editor table, #editor th, #editor td {
      border: 1px solid #495057;
      padding: 5px;
    }
    
    #editor a {
      color: #0d6efd;
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      .editor-toolbar {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .editor-toolbar button {
        width: 100%;
        margin-bottom: 5px;
      }
    }