#text-contain{
    margin: 10%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body{
    font-family: 'Courier New', Courier, monospace;
}
#header {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    position: fixed;
    top: 0;
    width: 100%;
    color: rgb(113, 133, 122);
    padding: 20px 10px;
    z-index: 1000;
    font-family: 'Courier New', Courier, monospace;
    background-color: white;

}
textarea{
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    border: none;
    outline: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2em;
    resize: none;
    -webkit-user-select: text; /* Safari */
    -ms-user-select: text; /* IE 10 and IE 11 */
    user-select: text; /* Standard syntax */
    background-color: transparent;
}

.menu {
    position: fixed;
    z-index: 1; /* Sit on top */
    top: 60px;
    left: 10px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.icon {
    font-size: 20px;
    margin-right: 8px;
}

.text {
    flex: 1;
    font-size: 14px;
}

.shortcut {
    font-size: 12px;
    color: #999;
}

.menu-placeholder {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}


.menu {
    display: none;
}

.menu.visible {
    display: block;
}

#logo{
    padding: 3px;
    border-radius: 5px;

}
#logo:hover{
    background-color: rgb(244, 244, 245);
    border-radius: 5px;
}
::file-selector-button{
    font-family: 'Courier New', Courier, monospace;
    padding: 2px;
    border-radius: 5px;
    border: 1px solid rgb(244, 244, 245);
    background-color: white;
    font-size: 1.2em;
    font-weight: bold;
}
input[type="file"]{
    width: 90px;
    overflow: hidden;
}