body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}
#editor {
    width: auto;
    height: 1000px;
    min-height: 150px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    font-size: 16px;   /* Base text size */
    line-height: 1.4;  /* Normal spacing */
    outline: none;
}
#editor img {
    width: 1.9em;      /* Scales with text size */
    height: 1.9em;     /* Keeps emoji square */
    vertical-align: middle; /* Centers with text */
}
#loadInput {
    display: none;
}
nav {
    padding: 10px;
    background-color: #66ff0088;
    border-radius: 10px;
}
button {
    border-radius: 10px;
    border: none;
    padding: 10px;
}
th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
}
table {
    background-color: #ccc;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
td, th {
    border: 1px solid #ddd;
    padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2;}
td img {
    height: 1.9em;
    width: 1.9em;
    vertical-align: middle;
}