@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
.bash-mirror {
  position: relative;
  min-height: 100px;
  max-height: 400px;
  font-family: "Roboto", sans-serif;
  background-color: #30323D;
  color: white;
  border-radius: 5px;
  overflow: scroll; }
  .bash-mirror::-webkit-scrollbar {
    width: 6px; }
  .bash-mirror::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: #6f7380;
    border-radius: 10px; }
    .bash-mirror::-webkit-scrollbar-thumb:hover {
      background-color: #9598a3; }
  .bash-mirror::-webkit-scrollbar-corner {
    background: #30323D;
    border-radius: 10px; }
  .bash-mirror p {
    margin: 0;
    padding: 0; }
  .bash-mirror-header {
    height: 25px;
    background-color: rgba(48, 50, 61, 0.9);
    border-radius: 5px 5px 0 0;
    border-bottom: 0.2px solid rgba(0, 0, 0, 0.4); }
  .bash-mirror-content-wrap {
    max-height: 100%;
    padding: 15px; }
    .bash-mirror-content-wrap .current-path {
      opacity: .8; }
    .bash-mirror-content-wrap .command-input-container {
      width: 100%;
      display: flex;
      align-items: center; }
      .bash-mirror-content-wrap .command-input-container .command-line-sign {
        padding: 0 5px; }
      .bash-mirror-content-wrap .command-input-container input {
        width: 98%;
        height: auto;
        background-color: #30323D;
        color: white;
        outline: none;
        border: none; }
    .bash-mirror-content-wrap .user-input .command-keyword {
      color: #60b8ff; }
    .bash-mirror-content-wrap .command-output-container {
      margin-bottom: 15px; }
    .bash-mirror-content-wrap ul, .bash-mirror-content-wrap ol {
      list-style: none; }
      .bash-mirror-content-wrap ul li, .bash-mirror-content-wrap ol li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5px; }
        .bash-mirror-content-wrap ul li svg, .bash-mirror-content-wrap ol li svg {
          max-width: 20px;
          margin-right: 5px;
          opacity: .7; }
    .bash-mirror-content-wrap .bash-mirror-error {
      color: #ff916f; }
