/* Basic styles for the emoji typing editor */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.editor-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#editor {
    width: 100%;
    height: 300px;
    border: none;
    outline: none;
    padding: 10px;
    background-color: #fff;
    font-size: 18px;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style for emoji transformations */
.large-emoji {
    font-size: 40px;
}

.small-emoji {
    font-size: 30px;
}

/* Add more emoji variations or styles here */