.quran-tanzil-reader {

    width: 100%;

    max-width: 100%;

    margin: 20px auto;

    direction: rtl;

}


.quran-tanzil-frame-wrapper {

    width: 100%;

    overflow: hidden;

    border-radius: 8px;

    background: #ffffff;

}


.quran-tanzil-frame {

    width: 100%;

    height: 800px;

    border: none;

    display: block;

    background: #ffffff;

}


.quran-tanzil-controls {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    flex-wrap: wrap;

}


.quran-tanzil-controls button {

    border: none;

    border-radius: 7px;

    padding: 12px 25px;

    font-size: 16px;

    font-family: inherit;

    cursor: pointer;

    background: #198754;

    color: #ffffff;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

}


.quran-tanzil-controls button:hover {

    opacity: 0.85;

    transform: translateY(-1px);

}


.quran-tanzil-controls button:active {

    transform: translateY(0);

}


.quran-tanzil-controls button:disabled {

    opacity: 0.45;

    cursor: not-allowed;

    transform: none;

}


.quran-tanzil-page-info {

    text-align: center;

    margin-top: 12px;

    font-size: 15px;

    color: #555555;

    font-family: inherit;

}


/*
 * موبایل
 */

@media (max-width: 768px) {

    .quran-tanzil-frame {

        height: 650px;

    }


    .quran-tanzil-controls {

        gap: 7px;

    }


    .quran-tanzil-controls button {

        padding: 10px 16px;

        font-size: 14px;

    }

}


/*
 * موبایل کوچک
 */

@media (max-width: 400px) {

    .quran-tanzil-frame {

        height: 600px;

    }


    .quran-tanzil-controls button {

        padding: 9px 12px;

        font-size: 13px;

    }

}






@media (max-width: 768px) {
    .quran-tanzil-controls {
        display: none !important;
    }
}