/* ===== Base Layout ===== */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 20px;
    color: #333;
}

/* ===== Headings ===== */
h1 {
    color: #333;
}

/* ===== Form Elements ===== */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* ===== Button ===== */
button {
    padding: 10px 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

/* ===== Article Box ===== */
.article-box {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* ===== Article Content (WYSIWYG output) ===== */
.article-content {
    margin-top: 15px;
    line-height: 1.8;
}

/* Images inside article */
.article-content img {
    max-width: 100%;
    height: auto;
}

/* Quotes */
.article-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 10px;
    color: #555;
    margin: 15px 0;
}

/* Code blocks */
.article-content pre {
    background: #f4f4f4;
    padding: 10px;
    overflow-x: auto;
}

/* ===== Actions ===== */
.article-actions {
    margin-top: 20px;
}

.article-actions a {
    text-decoration: none;
    color: blue;
}

.article-actions a:hover {
    text-decoration: underline;
}
.toolbar{
    margin-bottom:10px;
}

.toolbar button{
    padding:8px 12px;
    margin-right:5px;
    margin-bottom:5px;
}

#editor{
    min-height:300px;
    border:1px solid #ccc;
    background:white;
    padding:15px;
    border-radius:8px;
    width: 60%;
    margin: 0 auto;
}