* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}

textarea {
  resize: none;
  outline-style: none;
  border: none;
  font-family: 'Inter', sans-serif;
  background: transparent;
  overflow-y: auto;
  scrollbar-width: none;
}

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

.top-section {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: start;
}

.today {
  width: min(50%, 800px);
  max-width: 100%;
  height: 70vh;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.9);
}

.backlog-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 15vw;
  min-width: 150px;
  max-width: 300px;
  height: 70vh;
  
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  
  label {
    font-size: 0.8rem;
    color: gray;
    cursor: pointer;
  }

  textarea {
    height: 100%;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
  }
}

.week {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  height: 20vh;
  padding-inline: 1rem;
}

.day {
  flex: 1 1 200px;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  label {
    font-size: 0.8rem;
    color: gray;
    cursor: pointer;
  }

  textarea {
    height: 100%;
    min-height: 80px;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
  }
}