.electron-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  background: #ffffff;
  user-select: none;
  -webkit-app-region: drag;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
}

.electron-title-bar .title-content {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.electron-title-bar .title-content .app-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.electron-title-bar .title-content .title-text {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.electron-title-bar .window-controls {
  display: flex;
  -webkit-app-region: no-drag;
}

.electron-title-bar .window-controls .control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 32px;
  color: #555;
}

.electron-title-bar .window-controls .control-button.divider {
  width: 20px !important;
}

.electron-title-bar .window-controls .control-button.divider:hover {
  background-color: transparent;
}

.electron-title-bar .window-controls .control-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.electron-title-bar .window-controls .control-button.close:hover {
  background-color: #e81123;
  color: white;
}

.electron-title-bar .window-controls .control-button .vertical-divider {
  height: 16px;
  width: 1px;
  background-color: #e0e0e0;
}