.flyout {
    width: 248px;
    position: fixed;
    bottom: 24px;
    left: 50%;
    border-width: 1px;
    border-style: solid;
    border-top-color: #353535;
    border-right-color: #303030;
    border-bottom-color: #303030;
    border-left-color: #353535;
    background-color: #2e2e2e;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: white;
    border-radius: 12px;
    font-family: Segoe UI;
    z-index: 1000;
    display: none;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
}

.flyout.show {
    display: block;
    transform: translateX(-50%) scale(1);
}

.flyout::before {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    z-index: 1001;
}

.flyout-buttons {
  margin-left: 8px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.flyout button {
  height: 32px;
  width: calc(50% - 12px);
  margin-left: 4px;
  border-width: 1px;
  border-style: solid;
  border-top-color: #353535;
  border-right-color: #303030;
  border-bottom-color: #303030;
  border-left-color: #353535;
  background-color: #3a3a3a;
  color: white;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 14px;
  transition-duration: 200ms;
}

.flyout button:hover {
  background-color: #414141;
}

.flyout button:active {
  background-color: #272727;
}

.flyout a {
  color: white;
  text-decoration: none;
}

.flyout-content {
  width: calc(100% - 24px);
  margin-top: 6px;
  margin-left: 12px;
}