.notepad-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ECE9D8;
    font-family: Tahoma, 'Segoe UI', sans-serif;
}

.notepad-app .menu-bar {
    display: flex;
    background-color: #ECE9D8;
    border-bottom: 1px solid #ACA899;
    padding: 2px 0;
}

.notepad-app .menu-item {
    position: relative;
    padding: 2px 8px;
    cursor: default;
}

.notepad-app .menu-item:hover {
    background-color: #316AC5;
    color: white;
}

.notepad-app .menu-item.active .dropdown {
    display: block;
}

.notepad-app .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ECE9D8;
    border: 1px solid #ACA899;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    z-index: 1000;
}

.notepad-app .dropdown-item {
    padding: 3px 20px;
    white-space: nowrap;
}

.notepad-app .dropdown-item:hover {
    background-color: #316AC5;
    color: white;
}

.notepad-app .dropdown-separator {
    height: 1px;
    background-color: #ACA899;
    margin: 3px 0;
}

.notepad-app .notepad-text {
    flex-grow: 1;
    resize: none;
    border: none;
    padding: 2px;
    font-family: 'Lucida Console', monospace;
    font-size: 12px;
    line-height: 14px;
    background-color: white;
    color: black;
    outline: none;
    margin: 0;
    border: 1px solid #7A7A7A;
}