/* navbar start */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.banner {
    padding: 8px;
    background: #F8F9FA;
    text-align: center;
}

.navbar-main {
    padding: 12px 24px;
    border-bottom: 1px solid #E5E5E5;
}

.nav-button {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 50%;
    border: none;
    background: transparent;
}

.nav-button:hover {
    background: #F8F9FA;
}

.drawer {
    width: 280px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1100;
}

.drawer.show {
    transform: translateX(0);
}
/* navbar end */

.chapter-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.section-heading {
    font-weight: bold;
    font-size: 18px;
    margin: 15px 0;
    display: block;
}

.verse-paragraph {
    margin-bottom: 15px;
}

.verse {
    display: inline;
}

.verse-label {
    font-weight: bold;
    font-size: 14px;
    margin-right: 5px;
    color: #666;
}

.verse-content {
    line-height: 1.6;
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

.btn-light {
    background-color: white;
    border: 1px solid #e0e0e0;
}

.btn-light:active {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 90%;
    max-width: 480px;
    background: white;
    border-radius: 16px 16px 0 0;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
    z-index: 1000;
}

.bottom-sheet.show {
    transform: translateX(-50%) translateY(0);
}

.btn-close-sheet {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-items {
    border-top: 1px solid #eee;
}

.action-item {
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eee;
}

.highlight-colors {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}