/* public/css/apps/word_wall.css */

.word-wall-app-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
    padding: 10px;
}

.word-wall-control-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F1EFE2;
    padding: 8px;
    border: 1px solid #ACA899;
    box-shadow: inset 1px 1px 0 #fff;
    flex-shrink: 0;
}

.word-wall-main-layout {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    background: #FFF;
    border: 1px solid #7F9DB9;
}

.word-wall-cloud-pane {
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    overflow-y: auto;
}

.word-wall-letter-section-header {
    width: 100%;
    background: #0058EE;
    color: #FFF;
    padding: 3px 15px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.3);
    position: sticky;
    top: -15px;
    z-index: 5;
}

.word-wall-letter-section-header.favorites-header {
    background: #FFD700;
    color: #000;
}

.word-wall-letter-section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 5px 10px;
    width: 100%;
    justify-content: flex-start;
}

.word-wall-pill {
    display: inline-flex;
    align-items: center;
    background: #FFFFE0; /* Tafsir */
    border: 1px solid #ACA899;
    border-radius: 15px;
    padding: 2px 12px;
    transition: background 0.1s;
    user-select: none;
    cursor: pointer;
}

.word-wall-pill.source-quran {
    background: #E0FFE0; /* Quran */
}

.word-wall-pill:hover { background: #FFFACD; border-color: #316AC5; }
.word-wall-pill.source-quran:hover { background: #CDFFCD; }

.word-wall-word-text {
    color: #000080;
    font-weight: 500;
}

.word-wall-hits-pane {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ECE9D8;
    z-index: 10;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.word-wall-hits-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ACA899;
    flex-shrink: 0;
}

.word-wall-hit-entry {
    background: #FFF;
    border: 1px solid #ACA899;
    margin-bottom: 10px;
    padding: 10px;
}

.word-wall-hit-entry .location {
    font-weight: bold;
    font-size: 11px;
    color: #000080;
    display: block;
    margin-bottom: 5px;
}

.word-wall-hit-entry .snippet mark {
    background: #FFD700;
    font-weight: bold;
}
