.blog-editor-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

.blog-editor-error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
}

.blog-editor-loading {
    text-align: center;
    padding: 24px;
    color: #6c757d;
    font-size: 16px;
}

.blog-editor-title {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-editor-title:focus {
    outline: none;
    border-color: #4d90fe;
    box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2);
}

.blog-editor-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 24px;
    background-color: #fff;
}

.blog-editor .ql-toolbar {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px;
}

.blog-editor .ql-container {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    min-height: 400px;
    font-size: 16px;
    font-family: inherit;
}

.blog-editor-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.blog-editor-save-button {
    background-color: #4d90fe;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.1s;
}

.blog-editor-save-button:hover {
    background-color: #357ae8;
}

.blog-editor-save-button:active {
    transform: translateY(1px);
}

.blog-editor-save-button:disabled {
    background-color: #bdc1c6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-editor-container {
        padding: 16px;
    }

    .blog-editor-title {
        font-size: 16px;
        padding: 10px 14px;
    }

    .blog-editor .ql-container {
        min-height: 300px;
    }

    .blog-editor-save-button {
        padding: 10px 20px;
        font-size: 15px;
    }
}
