/* myownbible_word_meaning_style.css - വേർഡ് അർത്ഥം & വിശദീകരണ പോപ്പ്-അപ്പ് ഡിസൈൻ */

/* 1. വചനത്തിൽ അർത്ഥമുള്ള വാക്കുകൾ കാണിക്കാനുള്ള ആധുനിക ശൈലി (!important ചേർത്തത്) */
.highlight-meaning-word {
    border-bottom: 2px dashed #00a8ff !important; /* ഓറഞ്ച് മാറി കറക്റ്റ് നീല നിറമാകാൻ !important ചേർത്തു */
    cursor: pointer;
    background-color: rgba(0, 168, 255, 0.08) !important; /* വാക്കിന് ചുറ്റുമുള്ള ഷേഡും നീലയാക്കി */
    padding: 0 2px;
    border-radius: 2px;
    transition: background-color 0.2s, color 0.2s;
    display: inline-block;
}
.highlight-meaning-word:hover {
    background-color: rgba(0, 168, 255, 0.25) !important;
    color: #0077c2 !important; /* വെള്ള ബാക്ക്ഗ്രൗണ്ടിൽ വാക്ക് കൂടുതൽ തെളിഞ്ഞു കാണാൻ */
}
/* 2. വാക്ക് സെലക്ട് ചെയ്യുമ്പോൾ വരുന്ന പ്രീമിയം ബ്ലാക്ക് പോപ്പ്-അപ്പ് */
.word-selection-modal {
    display: none;
    position: fixed;
    z-index: 100001; /* റിബണിനും മുകളിൽ വരാൻ */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.65);
    align-items: center;
    justify-content: center;
}

.word-modal-content {
    background-color: #1e1e24;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #33333b;
    box-sizing: border-box;
}

.word-modal-form-group {
    margin-bottom: 12px;
    text-align: left;
}
.word-modal-form-group label {
    display: block;
    font-size: 13px;
    color: #8a8a9e;
    margin-bottom: 5px;
    font-weight: bold;
}
.word-modal-input, .word-modal-textarea {
    width: 100%;
    background: #2a2a30;
    border: 1px solid #3a3a42;
    color: white;
    padding: 8px;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.word-modal-textarea {
    height: 80px;
    resize: vertical;
}
.word-modal-radio-group {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}
.word-modal-radio-group label {
    color: white;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 3. മൗസ് വെക്കുമ്പോൾ വാക്കിന്റെ അർത്ഥം കാണിക്കുന്ന ടൂൾടിപ്പ് ബോക്സ് സ്റ്റൈൽ */
.word-meaning-tooltip {
    position: absolute;
    background: #111115;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 100002;
    border: 1px solid #444;
    display: none;
    pointer-events: none;
    text-align: left;
}
.tooltip-title { 
    color: #00a8ff; /* ടൂൾടിപ്പ് ടൈറ്റിൽ നിയോൺ നീലയാക്കി */
    font-weight: bold; 
    margin-bottom: 4px; 
}
.tooltip-literal { font-style: italic; color: #bbb; margin-bottom: 6px; border-bottom: 1px solid #333; padding-bottom: 4px; font-size: 12px; }
.tooltip-exp { color: #eee; line-height: 1.4; }