body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f2ec;
    color: #222;
}

.header {
    background: #116530;
    color: white;
    padding: 15px;
    text-align: center;
}

.header select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.info-surah {
    background: white;
    margin: 12px;
    padding: 15px;
    border-radius: 15px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-surah h2 {
    text-align: center;
    margin-top: 0;
    font-size: 30px;
}

.reader {
    height: calc(100vh - 85px);
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    padding-bottom: 90px;
}

.page-ayat {
    min-height: 100vh;
    scroll-snap-align: start;
    background: white;
    margin: 12px;
    padding: 20px;
    border-radius: 18px;
    box-sizing: border-box;
}

.no-ayat {
    text-align: center;
    color: #116530;
    font-weight: bold;
    margin-bottom: 15px;
}

.teks-arab{
    direction: rtl;          /* Arabic direction */
    text-align: right;
    font-size: 32px;
    line-height: 2;
    font-family: 'Amiri', 'Scheherazade New', serif;
}

.makna {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
}

.ayah-number{
    position:relative;
    display:inline-block;
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
    font-size:16px;
    margin-right:8px;
}

.ayah-number::before{
    content:"۝";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    font-size:30px;      /* asal 40px */
    line-height:30px;    /* asal 40px */
}

.audio-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #116530;
    color: white;
    padding: 10px;
    z-index: 999;
    display: flex;
    gap: 8px;
    align-items: center;
}

.audio-panel select,
.audio-panel button {
    padding: 9px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.audio-panel button {
    background: #ffd166;
    font-weight: bold;
}

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:500px;
    max-height:80vh;
    overflow-y:auto;
    margin:10vh auto;
    padding:20px;
    border-radius:15px;
    position:relative;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:30px;
    cursor:pointer;
    color:red;
}

.modal-content h2{
    text-align:center;
    margin-top:0;
}
.btn-koheren{
    display:inline-block;
    padding:10px 15px;
    background:#ffd166;
    color:black;
    text-decoration:none;
    border-radius:8px;
    font-size:14px;
    font-weight:bold;
}