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

/* PAGE */
.page {
    position: relative;
    background: #fff;
    max-width: 900px;
    margin: auto;
    padding: 30px;
    border: 2px solid #b9b9b9;
}

/* CADRE INTERNE */
.page::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #b9b9b9;
    pointer-events: none;
}

/* TITRE */
.title {
    text-align: center;
    color: #c97b63;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 15px;
    border: 2px solid #c97b63;
    padding: 8px 0;
    line-height: 1.4;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* TEXTE ARABE */
.invocation {
    font-size: 25px;
    line-height: 2.2;
}

/* RTL */
.rtl {
    direction: rtl;
    text-align: center;
}

.invocation p {
    margin: 12px 0;
}

/* TAHIYYATE — disposition livret */
.tahiyyate {
    direction: rtl;
    unicode-bidi: embed;
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
}

/* Espaces visuels entre blocs */
.tahiyyate .spacer {
    height: 11px;
}



/* TITRE EMBELLI */
.section-title.ornate {
    display: table;
    margin: 0 auto 25px;
    padding: 6px 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #6f3d28;
    background: #f6e6db;
    border: 2px solid #c47b5a;
    position: relative;
    text-align: center;
}

/* ORNEMENTS DISCRETS */
.section-title.ornate::before,
.section-title.ornate::after {
    content: "۞";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #c47b5a;
}

.section-title.ornate::before {
    left: 10px;
}

.section-title.ornate::after {
    right: 10px;
}

/* TITRE PRINCIPAL EMBELLI */
.ornate-title {
    display: table;
    margin: 0 auto 35px;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    color: #6f3d28;
    background: #f6e6db;
    border: 3px solid #c47b5a;
    position: relative;
}

/* ORNEMENTS DISCRETS */
.ornate-title::before,
.ornate-title::after {
    content: "۞";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #c47b5a;
}

.ornate-title::before {
    left: 14px;
}

.ornate-title::after {
    right: 14px;
}


/* ===== 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;
}