/**
 * Word Study Panel — panel-level styles shared by LexiconStudyModal (right panel).
 * Modal chrome (backdrop, header, close button) has been removed — panel is embedded
 * directly in LexiconStudyModal's right container.
 */

/* Word display section (top of panel) */
.word-study-word-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--highlight);
    border-radius: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.word-study-word-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    user-select: all;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.word-study-word-text:hover {
    background: rgba(255, 255, 255, 0.5);
}

.word-study-word-translit {
    font-size: 0.9rem;
    color: #4a5568;
    font-style: italic;
}

.word-study-word-meaning {
    font-size: 0.85rem;
    color: #718096;
}

.word-study-word-strongs {
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 600;
    margin-left: auto;
}

.word-study-word-tags {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* Word tag button uses .verse-action-btn from styles.css */

/* Letter tiles section */
.word-study-letter-tiles-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 150px;
}

.word-study-letter-tiles-header {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.word-study-letter-tiles-container {
    min-height: 80px;
    /* LetterTiles component will inject tiles here */
}

/* Reference data section with tabs */
.word-study-reference-section {
    margin-bottom: 1.5rem;
}

.word-study-reference-header {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.word-study-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1rem;
}

.word-study-tab {
    padding: 0.75rem 1.25rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #718096;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.word-study-tab:hover {
    color: #4a5568;
    background: #f7fafc;
}

.word-study-tab.active {
    color: #007aff;
    border-bottom-color: #007aff;
}

.word-study-tab-content {
    min-height: 200px;
}

.word-study-tab-panel {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
}

.word-study-tab-panel.active {
    display: block;
}

/* Notes section */
.word-study-notes-section {
    margin-bottom: 1rem;
}

.word-study-notes-header {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.word-study-notes-save-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background: #f7fafc;
    color: #718096;
    cursor: pointer;
    transition: all 0.2s;
}
.word-study-notes-save-btn:disabled {
    opacity: 0.5;
    cursor: default;
}
.word-study-notes-save-btn.dirty {
    background: #fed7d7;
    border-color: #fc8181;
    color: #c53030;
    font-weight: 600;
}

.word-study-notes-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.word-study-notes-textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.14);
}

.word-study-notes-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #a0aec0;
}


/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .word-study-word-display {
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .word-study-word-text {
        font-size: 1.3rem;
    }

    .word-study-word-translit {
        font-size: 0.85rem;
    }

    .word-study-letter-tiles-section {
        padding: 0.75rem;
        min-height: 100px;
        margin-bottom: 0.75rem;
    }

    .word-study-letter-tiles-header {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .word-study-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .word-study-tab-panel {
        max-height: 300px;
    }

    .word-study-notes-textarea {
        min-height: 80px;
    }
}
