body {
    margin: 0;
    padding: 0px;
    background: #eee;
    font-family: "Scheherazade New", serif;
}

.page {
    position: relative;
    background: white;
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

/* BORDURE ISLAMIQUE EXACTE */
.border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 20px solid transparent;
    border-image-source: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'>\
<path d='M0 20 L10 10 L20 20 L10 30 Z M20 0 L30 10 L20 20 L10 10 Z M40 20 L30 10 L20 20 L30 30 Z M20 40 L30 30 L20 20 L10 30 Z' fill='none' stroke='%23c97b63' stroke-width='2'/>\
</svg>");
    border-image-slice: 20;
    border-image-repeat: round;
}

/* TITRE */
.title {
    text-align: center;
    color: #c97b63;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid #c97b63;
    padding: 6px 0;
    margin-bottom: 10px;
}

/* CONTENU */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* TEXTE */
.column {
    font-size: 22px;
    line-height: 2;
}

.rtl {
    direction: rtl;
    text-align: center;
}

.column p {
    margin: 6px 0;
}


/* ===== NOUVEAU : BARRE DE NAVIGATION AJOUTÉE À LA FIN ===== */
/* ===== SANS MODIFIER TES STYLES EXISTANTS ===== */

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: white;
    color: #b45f06;  /* Harmonisé avec ta couleur */
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #d98c40;  /* Harmonisé avec ta couleur */
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn.disabled {
    opacity: 0.5;
    border-color: #ccc;
    color: #999;
    background: #f5f5f5;
    cursor: default;
    pointer-events: none;
}

.nav-btn:not(.disabled):hover {
    background: #d98c40;  /* Harmonisé avec ta couleur */
    color: white;
    border-color: #b45f06;
}