.background {
  background-color: #008080;
}

#loading-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.headline {
  font-size: 3rem;
}

.active {
  background-color: #00134c;
  border-radius: 10px;
}

#accordion {
  margin-top: 20px;
}

.card-header {
  background-color: #00134c;
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #fff;
    font-family: 'Consolas', "Courier New", monospace;
    font-weight: bold;
}

.card-header .btn-link {
  color: white;
  text-decoration: none;
    font-weight: bold;
}

.card-header:hover {
  background-color: #001a7a;
}

.copyright {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #9a9a9a;
}

.card-header-closed {
  background-color: #343434;
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
    font-family: 'Consolas', "Courier New", monospace;
}

.card-header-closed .btn-link {
  color: white;
  text-decoration: none;
  font-family: inherit;
}

.card-header-closed:hover {
  background-color: #626262;
}

.powershell-cmd {
    color: #f8c555;
    font-weight: bold;
}

.powershell-param {
    color: #979797;
    font-weight: normal;
}

.powershell-arg {
    color: #ffffff;
    font-weight: bold;
}

.powershell-cursor {
    width: 0.6rem;
    background-color: #ffffff;
    animation: blink 1s steps(1, start) infinite;
}

.powershell-prompt {
    color: #979797;
    font-style: italic;
    font-weight: normal;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.current{
  justify-content: left;
}

.powershell{
  background-color: #022351;
  font-size: medium;
  padding: 10px;
}

.title-bar-text {
  margin-right: 1px;
}

.command-container {
  color: #ffffff;
  font-weight: bold;
}

input[type="text"], select {
  margin-left: 0;
  padding-left: 5px;
  font-weight: bold;
}