.miniapp-container[data-app-type="bibleverse"] {
    margin: 15px 0;
    padding: 15px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: #1a1a1a;
    width: 100%;
    max-width: 100%;
    color: #e0e0e0;
}

.bibleverse-app {
    width: 100%;
}

.bibleverse-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 11px;
    border-bottom: 2px solid #667eea;
}

.bibleverse-reference {
    margin: 0 0 6px 0;
    color: #a3b3ff;
    font-size: 12.75px;
    font-weight: 600;
    font-style: italic;
}

.bibleverse-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.bibleverse-toggle-btn {
    background: transparent;
    border: 1px solid #667eea;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3b3ff;
    min-width: 28px;
    height: 28px;
}

.bibleverse-toggle-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #a3b3ff;
}

.bibleverse-toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.bibleverse-translation {
    color: #999;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bibleverse-version-select {
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #667eea;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
}

.bibleverse-version-select:hover {
    border-color: #a3b3ff;
    background: #333;
}

.bibleverse-version-select:focus {
    border-color: #a3b3ff;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.bibleverse-warning {
    background: #3a3a1f;
    color: #ffd700;
    border: 1px solid #5a5a2f;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 10px 0;
    font-size: 11px;
    text-align: center;
}

.bibleverse-content {
    margin-top: 11px;
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.miniapp-container[data-app-type="bibleverse"][data-collapsed="true"] .bibleverse-content {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    padding: 0;
}

.miniapp-container[data-app-type="bibleverse"][data-collapsed="true"] .bibleverse-toggle-icon {
    transform: rotate(180deg);
}

.bibleverse-text {
    font-size: 11.2px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0 0 12px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: justify;
}

.bibleverse-number {
    font-weight: bold;
    font-style: italic;
}

.bibleverse-loading {
    text-align: center;
    padding: 30px 15px;
    color: #999;
}

.loading-spinner {
    border: 2px solid #333;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 11px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bibleverse-loading p {
    margin: 0;
    font-size: 11px;
}

.miniapp-error {
    padding: 15px;
    background: #3a1f1f;
    color: #ff6b6b;
    border: 1px solid #5a2f2f;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.miniapp-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

@media (max-width: 768px) {
    .miniapp-container[data-app-type="bibleverse"] {
        padding: 11px;
    }
    
    .bibleverse-reference {
        font-size: 14px;
    }
    
    .bibleverse-text {
        font-size: 12px;
        line-height: 1.6;
    }
}

