 .panel {
     display: flex;
     justify-content: space-between;
     gap: 16px;
 }

 .panel-controls {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .tally-title {
     color: white;
     margin-bottom: 6px;
     margin-top: 0px;
 }

 .tally-box-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
 }

 .info-container {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 4px;
     margin-bottom: 8px;
 }

 .tally-row {
     display: flex;
     gap: 6px;
     align-items: center
 }

 .tally-col {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .tally-box {
     width: 28px;
     height: 22px;
     border-radius: 4px;
     border: 1px solid rgba(200, 210, 240, 0.06);
     display: grid;
     place-items: center;
     font-weight: 700;
 }

 button {
     padding: 8px 10px;
     border-radius: 8px;
     border: none;
     background: #2b4066;
     color: #aaccff;
     cursor: pointer;
 }

 button:disabled {
     opacity: 0.45;
     cursor: not-allowed;
 }

 span.shortcut {
     color: #fff;
     font-weight: 900;
 }

 .info {
     color: #fff;
 }

 h2 {
     margin: 0 0 12px 0;
 }


 @media (min-width: 1024px) {
     .panel {
         align-self: flex-start;
     }
 }