ui/pausegamepanel/pausegamepanel.razor.scss
PauseGamePanel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;

  .pause-container {
    width: 100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 1);

    .header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      padding: 20px;
      pointer-events: all;

      dropdown {
        width: 300px;
        background-color: rgba(6, 9, 14, 0.9);
        padding: 10px 15px;
        font-family: "Space Grotesk";
        pointer-events: all;
        color: white;
      }

      option {
        font-family: "Space Grotesk";
        color: white;
        opacity: 0;
        display: none;
      }
    }

    main {
      position: relative;
      flex: 1;
      justify-content: center;
      align-items: center;

      .container {
        width: 30%;
        flex-direction: column;
        gap: 20px;

        button {
          flex: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 16px;
          padding: 25px;
          border: 1px solid #ccc;
          background-color: transparent;
          border-radius: 16px;
          color: white;
          font-size: 25px;
          font-family: "JetBrains Mono";
          pointer-events: all;
        }
      }

      .credits {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;

        p {
          text-align: center;
          color: gray;
        }
      }
    }
  }

  .version-manager {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);

    p {
      color: white;
      font-family: "JetBrains Mono";
      font-size: 26px;
    }
  }
}