/* Dictionary Component Styles */
.word-definitions {
    width: 100%;
    max-width: 667px;
    margin: 20px 0;
    padding: 0px;
    border-radius: 12px;
    text-align: left;
}

.dictionary-content {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--txt-primary);
}

.dictionary-content h1,
.dictionary-content h2,
.dictionary-content h3 {
    color: var(--txt-primary);
    margin: 16px 0 8px 0;
}

.dictionary-content p {
    margin: 8px 0;
    margin-bottom: 22px;
    font-size: 19px;
}

.dictionary-content strong {
    font-weight: 600;
    color: var(--txt-primary);
}

.dictionary-content em {
    font-style: italic;
    color: var(--txt-secondary);
}

.dictionary-content code {
    background: #e8e8e8;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.dictionary-content pre {
    background: #e8e8e8;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 12px 0;
}

.loading-message,
.no-dictionary {
    text-align: center;
    padding: 20px;
    color: var(--txt-secondary);
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .word-definitions {
        margin: 15px 0;
        padding: 15px;
    }
    
    .dictionary-content {
        font-size: 14px;
    }

    .dictionary-content h1,
    .dictionary-content h2,
    .dictionary-content h3 {
        font-size: 1.2em;
        margin: 12px 0 6px 0;
    }

    .dictionary-content p {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .loading-message,
    .no-dictionary {
        padding: 15px;
        font-size: 14px;
    }
}
