@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --positionOffset: 0%;
}

.mouse-cursor-gradient-tracking {
  position: fixed;
  background: #2D3748;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border: none;
  color: white;
  cursor: default;
  outline: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.mouse-cursor-gradient-tracking span {
  position: relative;
}

.mouse-cursor-gradient-tracking::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 300%;
  height: 300%;
  background: radial-gradient(circle closest-side, #424b5a, transparent);
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease;
}

h1,h2,h3,h4,h5,h6,p,div,span,input,button {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-align: center;
}

button,input {
    color: black;
}

p {
    color: lightgray;
}

h3 {
    font-weight: 600;
}

body {
    background-color: #2D3748;
}

th, td {
    outline: 1px #2f3746 solid;
    padding: 3px 6px;
}

table {
    width: 100%;
}

table input[type="number"] {
    width: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid white;
}
table input[type="checkbox"] {
    text-align: center;
}

input[type='number']::-webkit-inner-spin-button, 
input[type='number']::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    margin: 0;
}

.precent-weight {
    width: 50px;
    text-align: center;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 1.3em;
}

#powerschool-paste {
    width: 300px;
}

.footer {
    margin-top: 48px;
    text-align: center;
    font-size: .8em;
}

.centered-section {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 1s;
    width: 900px;
    max-width: 90%;
}

.navigation-button {
    margin-top: 24px;
    background-color: #4A5568;
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2em;
}

#intro-section {
    top: calc(50% - var(--positionOffset));
}

#input-section {
    top: calc(150% - var(--positionOffset));
}

#tables-section {
    top: calc(250% - var(--positionOffset));
    max-height: 80%;
    overflow: auto;
}

#tables-section h3 {
    margin: 36px 0 24px 0;
}

#csa-input-section {
    top: calc(350% - var(--positionOffset));
    max-height: 80%;
    overflow: auto;
}