@import url("https://fonts.googleapis.com/css?family=Ubuntu");
@import url("https://fonts.googleapis.com/css?family=Ubuntu+Mono");
body {
  background: linear-gradient(45deg, #57003f 0%, #f57453 100%);
  font-family: Ubuntu;
}

a {
  color: #dddddd;
  line-height: 1.2rem;
  margin: 10px;
  text-decoration: underline;
}

::-moz-selection {
  background: #dddddd;
  color: rgba(56, 4, 40, 0.9);
}
::selection {
  background: #dddddd;
  color: rgba(56, 4, 40, 0.9);
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#terminal {
  width: 70vw;
  height: 65vh;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}
#terminal__bar {
  display: flex;
  width: 100%;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: linear-gradient(#504b45 0%, #3c3b37 100%);
}
#bar__buttons {
  display: flex;
  align-items: center;
}
.bar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 1px 0px #41403a, 0px 1px 1px 0px #474642;
}
.bar__button:hover {
  cursor: pointer;
}
.bar__button:focus {
  outline: none;
}
#bar__button--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%);
  background-clip: padding-box;
}
#bar__user {
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}
#terminal__body {
  background: rgba(56, 4, 40, 0.9);
  font-family: "Ubuntu Mono";
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  overflow-y: auto;
}

.terminal__info {
  color: #dddddd;
  line-height: 1.2rem;
  margin: 10px;
}

.terminal__prompt {
  display: flex;
}
.terminal__prompt--user {
  color: #7eda28;
}
.terminal__prompt--location {
  color: #4878c0;
}
.terminal__prompt--bling {
  color: #dddddd;
  margin-right: 10px;
}
.terminal__prompt--cursor {
  display: block;
  height: 17px;
  width: 100%;
  /* margin-left: 9px; */
  /* margin-bottom: 6px; */
  /* animation: blink 1200ms linear infinite; */
}
.terminal__prompt--cursor.info {
  color: #dddddd;
  animation: none;
  width: 100%;
  height: auto;
  max-height: fit-content;
}
@keyframes blink {
  0% {
    background: #ffffff;
  }
  49% {
    background: #ffffff;
  }
  60% {
    background: transparent;
  }
  99% {
    background: transparent;
  }
  100% {
    background: #ffffff;
  }
}
@media (max-width: 600px) {
  #terminal {
    max-height: 90%;
    width: 90%;
  }
}

/* SCROLLBAR */

/* width */

body {
  overflow-y: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

/* width */
#terminal__body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
#terminal__body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px grey;
  border-radius: 50px;
}

/* Handle */
#terminal__body::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 4px;
}

/* Handle on hover */
#terminal__body::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

#terminal__input {
  /* margin-left: 9px; */
  height: 17px;
  width: calc(100% - 130px);
  background-color: inherit;
  border: none;
  outline: none;
  color: #dddddd;
  font-family: inherit;
  font-size: inherit;
  caret-color: #dddddd;
  text-transform: lowercase;
}

/*  */

.edu-table tbody tr td {
  padding: 2px 5px;
  text-align: center;
}

.edu-table tbody tr td:not(:last-child) {
  border-right: 1px solid #ddd;
}

.list-table tbody tr td:not(:last-child) {
  padding: 0 5px;
  /* font-weight: bold; */
}

.list-table tbody tr td:last-child {
  padding: 2px 0 2px 40px;
}

.left-title {
  width: 120px;
  display: inline-block;
}