

/* =================================================================== */
/* == CHANGE LINE HEIGHT - READING & EDITING VIEW (Confluence 10) == */
/* =================================================================== */

/* 1. --- READING VIEW --- */
/* Targets paragraphs and list items within the main page content area */
.wiki-content p,
.wiki-content li {
    line-height: 1.5;
}


/* 2. --- EDITOR VIEW --- */
/* Targets the main content area of the modern Confluence editor (ProseMirror) */
.ProseMirror {
    line-height: 1.5;
}

/* =================================================================== */
/* == INCREASE SPACING BETWEEN PARAGRAPHS == */
/* =================================================================== */

/* --- READING VIEW --- */
.wiki-content p {
    margin-bottom: 1.5em; /* Adjust this value as needed */
}

/* --- EDITOR VIEW --- */
.ProseMirror p {
    margin-bottom: 1.5em; /* Adjust this value as needed */
}

body .wiki-content {
    /* --- The Wrapping --- */
    /* Adjust these percentages to make the text column narrower or wider */
    padding-left: 15%;
    padding-right: 15%;
    
    /* --- Helper styles --- */
    max-width: none; /* Prevents Confluence's default width limit from interfering */
    line-height: 1.5; /* Ensures consistent line height */
}
