body {
    font-family: 'DM Sans', Arial, sans-serif;
    margin: 20px auto;
    max-width: 800px;
    font-size: 32px;
}

.editor-container {
    margin: 20px 0;
}

.text-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.text-box {
    flex: 1;
}

.text-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

#letters, #emojis {
    width: 100%;
    min-height: 80px;
    font-size: 48px;
    font-family: 'MonospaceEmojiFont', 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    background-color: #f9f9f9;
    word-break: break-all;
    white-space: pre-wrap;
    resize: none;
}

#letters {
    font-size: 67px;
}

#emojis {
    font-size: 40px;
}


.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.emoji-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.emoji-item:hover {
    background-color: #e3f2fd;
    transform: translateY(-2px);
}

.letter {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.emoji {
    font-size: 64px;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #666;
    text-align: center;
}
