body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #444;
}

.intro, .instructions {
    margin-bottom: 20px;
}

.editor {
    position: relative;
    width: 100%;
}

#text-input {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    z-index: 2;
    color: #333;
    font-family: 'Noto Sans Myanmar', sans-serif;
}

#ghost-text {
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 22px);
    height: 150px;
    padding: 10px;
    font-size: 1.2em;
    color: #aaa;
    z-index: 1;
    pointer-events: none;
    white-space: pre-wrap;
    font-family: 'Noto Sans Myanmar', sans-serif;
}


#suggestions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.suggestion {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Noto Sans Myanmar', sans-serif;
    transition: background-color 0.3s;
}

.suggestion:hover {
    background-color: #ccc;
}