body {
  font-family: "Verdana", sans-serif;
  background-color: #7fff89;
}

/* === Heading Styles === */
h1 {
  text-align: center;
  font-weight: bold;
}

/* === Table Styles === */
table {
  margin: 50px auto;
  border-collapse: collapse;
}

td {
  padding: 8px;
  text-align: left;
}

tr {
  height: 75px;
}

/* === Scorebug Layout === */
.scorebug {
  border: 5px solid #c1c4c0;
  background-color: #010101;
  height: 150px;
  color: #eafbfc;
}

.borderBot {
  border-bottom: 5px solid #c1c4c0;
}

.borderRight {
  border-right: 5px solid #c1c4c0;
}

/* === Table Column === */
.colScore {
  font-size: 24px;
  font-weight: bold;
}

.team {
  text-align: right;
  width: 22.5%;
}

.num {
  width: 12.5%;
}

.colInn {
  width: 15%;
}

.colBases,
.colPitches {
  width: 25%;
}

/* === Pitch Column === */
.atBatContainer {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.pitches {
  display: block;
  text-align: center;
  font-weight: bold;
}

#pitchCount {
  font-size: 28px;
}

/* === Inning Container === */
.containerInn {
  display: flex;          
  flex-direction: column;   
  align-items: center;       
  justify-content: center;  
  height: 100%;              
  width: 100%;               
  box-sizing: border-box;
}

#innNum {
  font-size: 40px;
  font-weight: bold;
}

/* === Arrow Icons === */
.arrow {
  display: inline-block;
  padding: 10px;
  border: solid;
  border-width: 0 8px 8px 0;
}

.arrow {
  border-color: #545753;
}

.arrowCurrent {
  border-color: #eafbfc;
}

#arrowUp {
  transform: rotate(-135deg);
}

#arrowDown {
  transform: rotate(45deg);
}

/* === Diamond Display === */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%; 
  width: 100%;
  box-sizing: border-box; 
}

.diamonds-row {
  position: relative;
  width: 100px;
  height: 50px;
}

.diamond {
  width: 25px;
  height: 25px;
  background-color: #626260;
  transform: rotate(45deg);
  position: absolute;
}

#baseThird {
  top: 20px;
  left: 20px;
}

#baseSecond {
  top: 0;
  left: 40px;
}

#baseFirst {
  top: 20px;
  left: 60px;
}

/* === Dots Display === */
.dots-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #626260;
  flex-shrink: 0;
}

/* === Highlighted Elements === */
.dot.highlighted,
.diamond.highlighted {
  background-color: #fbdb07;
}

/* === Buttons === */
.buttonContainer {
  width: 50%;
  background-color: #f6c33d;
  padding: 30px 0;
  margin: 50px auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.buttonContainerRow {
  margin: 10px 15px;
}

.buttonContainerRowLast {
  margin-top: 30px;
}

.reset {
  background-color: #D32F2F;
}

.reset:hover {
  background-color: #B71C1C ;
}


button {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;

    padding: 10px 24px;
    min-width: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 24px; 
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; 

    background-color: #1a73e8;
    color: #ffffff; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); 
}

button:hover {
    background-color: #125acb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}