

body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

@font-face {
    font-family: Uthman-Taha;
    src: url(Uthman-Taha.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.sidebar {
    background-color: #1a1a1a;
    padding: 15px;
    height: 100vh;
    left: 0;
    max-width: 230px;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}


.content {
    padding: 30px;
    padding-left: 250px
}

.ayah-text {
    
text-align: right;
margin-bottom: 15px;
font-family: "Fustat", sans-serif;
display: flex;
flex-flow: row-reverse;
align-items: center;
flex-wrap: wrap;
}

.ayah-word {
    font-family: 'Uthman-Taha' , sans-serif;
    font-size: 3rem;
}

.translation {
    font-size: 18px;
    margin-top: 15px;
    font-style: italic;
}

.ayah-word {
    display: inline-block;
    margin: 0 5px;
}

.sura-name {
    /* font-size: .8rem; */
}

.end-of-aya {
    font-size: 2rem;
    opacity: 0.6;
}

.control-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.control-icons i {
    font-size: 24px;
    cursor: pointer;
}
/* .aya-container {
    flex-basis: 100%;
    height: calc(100vh - 60px);
} */
.nav-link.active {
    font-weight: bold;
    color: #007bff; 
    border-bottom: 1px solid;
}

.nav-link:hover {
    text-decoration: none;
}

.single-word {
    text-align: center;
    margin: 0 5px;
}

.word-translation,
.word-transliteration {
    opacity: 0.6;
    font-size: 12px;
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

/* .video-container {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */


@media (max-width: 767px) {
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .video-container {
        float: none;
        clear: both;
        width: 100%;
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 25px;
        height: 0;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .content {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 0;
    }
    .sura-name {
        font-size: 2rem;
    }
    .end-of-aya,
    .ayah-word {
        font-size: 2.2rem;
    }
    img[alt="Bismillah"] {
        width: 70% !important;
    }
    .btn.btn-outline-light {
        margin-right: auto !important;
  margin-top: 25px;
    }
}

body.new-design  {
background-color: #fff;
color: #212529;
}

.new-design .sidebar {
    background-color: #b1901f;
}

.new-design .sidebar a {
    color: #fff;
}

.new-design .end-of-aya {
    color: #b1901f;
}

.new-design .word-translation, 
.new-design .word-transliteration {
    opacity: 1;
    color: #6d6d6d;
}

.new-design .btn {
    color: #b1901f;
    border-color: #b1901f;
    padding: 2px 20px 2px 22px;
    text-align: center;
    border-radius: 20px;
}

.new-design .btn:hover {
    color: #fff;
    background-color: #b1901f;
}

/* .new-design .accordion-body a.nav-link {
    color: #000;
} */

.new-design .accordion-item {
    background: transparent;
    border: 0px;
}

.new-design .accordion-button:not(.collapsed) {
    background: transparent;
    padding: 5px 0;
    color: #fff;
}

.new-design .accordion-button.collapsed{
    background: transparent;
    padding: 5px 0;
    border: 0;
    color: #fff;
}

.new-design .accordion-button:focus {
    box-shadow: none;
}

.new-design .accordion-body {
    padding-left: 8px;
    padding-right: 8px;
}

#sidebar.active {
    left: 0;
}

/* Hamburger icon on mobile only */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 10000;
}

/* Cross button */
.close-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    #sidebar {
        display: block;
        width: 100%;
        left: -232px;
        transition: all 0.2s;
        z-index: 10000;
    }
    .close-btn {
        display: block;
    }
}