/* Electron custom title bar css   */
.custom-buttons-container {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #333;
  z-index: 100;
  color: white;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-button {
  width: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #333;
  color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom-button:last-child {
  background-color: red;
}
.custom-button:last-child:hover {
  background-color: rgb(201, 3, 3);
}
.custom-button:hover {
  background-color: #3a3a3a;
}
.minimize-button.minimize {
  padding-top: 7px;
}
.minimize-button,
.maximize-button,
.close-button {
  background-color: inherit;
}
.customtitleBar {
  width: 100%;
  font-size: 12px;
  color: #fff;
  padding: 3px 10px;
  -webkit-app-region: drag;
}