body {
  font-family: "JetBrainsMono", monospace;
  font-size: 1.5rem;
}

body,
html {
  height: 100%;
  overflow: hidden;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #c0caf5;
  overflow: hidden;
}

#content {
  background-color: #1a1b26;
  flex: 1;
  overflow: auto;
}

.statusline-container {
  background-color: #1a1b26;
  /* padding-bottom: 1.25rem; */
  height: 2rem;
  font-size: 1rem;
}

.statusline {
  background-color: #3a3a3a;
  color: #98c379;
  display: flex;
  justify-content: space-between;
}

.line {
  padding: 0.2rem 0;
  position: relative;
}

.line div {
  display: inline-block;
}

.line-text {
  margin-left: 0.5rem;
}

.line-text.comment {
  font-style: italic;
  color: #565f89;
}

a {
  color: #c0caf5;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #7aa2f7;
}

.line-number {
  color: #484d65;
  width: 2.5rem;
  /* margin: 0 1rem; */
  text-align: right;
}

.statusline {
  background-color: #16161e;
  /* position: absolute; */
  /* font-size: 1rem; */
  /* bottom: 1rem; */
  /* left: 0; */
  /* right: 0; */
  /* display: flex; */
}

.left-side {
  margin-right: auto;
  display: flex;
}

.left-side .fa-solid {
  margin: 0 8px 0 2px;
}

.left-side .curvy-section {
  background-color: #9ece6a;
  height: 100%;
  width: 15px;
  border-radius: 0 99px 99px 0;
}

.right-side .curvy-section {
  background-color: #9ece6a;
  height: 100%;
  width: 15px;
  border-radius: 99px 0 0 99px;
}

.right-side {
  margin-left: auto;
  display: flex;
}

.statusline div div {
  color: #16161e;
  display: flex;
}

.left-side .mode {
  background-color: #9ece6a;
  padding: 2px 0 2px 10px;
}

.left-side .branch {
  background-color: #3b4261;
  border-radius: 0 99px 99px 0;
}

.branch .text {
  color: #9ece6a;
  padding: 2px 15px 2px 10px;
  align-items: center;
}

.left-side .filename {
  color: #c0caf5;
  padding: 2px 10px;
}

.right-side .position {
  background-color: #9ece6a;
  padding: 2px 10px 2px 0;
}

.right-side .position-percent {
  background-color: #3b4261;
  border-radius: 99px 0 0 99px;
  display: flex;
}

.position-percent .text {
  color: #9ece6a;
  padding: 2px 10px 2px 15px;
}

@media (max-width: 600px) {
  body {
    font-size: 10.5px;
  }

  .line-number {
    max-width: 24px;
  }
}
