body {
    margin: 0;
    font-family: Tahoma, Verdana, sans-serif;
    background: #e0e0e0;
    font-size: 13px;
}

button {
    background: #c0c0c0;
    border: 2px solid #fff;
    border-right-color: #404040;
    border-bottom-color: #404040;
    padding: 4px 6px;
    font-size: 13px;
    cursor: pointer;
}

button:active {
    border: 2px solid #404040;
    border-right-color: #fff;
    border-bottom-color: #fff;
}

input, select {
    font-family: Tahoma, Verdana, sans-serif;
    font-size: 13px;
}

.menubar {
    background: #c0c0c0;
    padding: 4px 6px;
    border-bottom: 2px solid #808080;
    display: flex;
    gap: 12px;
    position: relative;
}

.menu-item {
    cursor: pointer;
    padding: 2px 6px;
}

.menu-item.active {
    background: #000080;
    color: white;
}

.dropdown {
    position: absolute;
    top: 24px;
    background: #c0c0c0;
    border: 2px solid #808080;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 999;
}

.dropdown div {
    padding: 4px 8px;
    cursor: pointer;
}

.dropdown div:hover {
    background: #000080;
    color: white;
}

.submenu-title {
    font-weight: bold;
    padding: 4px 8px;
    border-top: 1px solid #808080;
}