/* Visual cue that the text is interactive */
.vyasa-tappable-verse {
    border-bottom: 2px dotted #b3884b; /* Subtle gold dotted line */
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.vyasa-tappable-verse:active {
    background-color: rgba(179, 136, 75, 0.1);
}

/* Bottom Sheet Overlay */
#vyasa-sheet-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#vyasa-sheet-overlay.vyasa-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Bottom Sheet Container */
#vyasa-bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: #ffffff;
    z-index: 9999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    transition: bottom 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

#vyasa-bottom-sheet.vyasa-sheet-active {
    bottom: 0;
}

/* Header & Close Button */
.vyasa-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.vyasa-sheet-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

#vyasa-sheet-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
}

/* Content Area */
#vyasa-sheet-content {
    padding: 20px;
    overflow-y: auto;
    font-family: inherit; /* Inherits your Astra theme typography */
}

.vyasa-pada-chheda ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.vyasa-pada-chheda li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.vyasa-bhavartha p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.vyasa-loader {
    text-align: center;
    padding: 30px;
    color: #888;
}