body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 10px;
}

.app-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 95%;
    max-width: 600px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    width: 80%;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.field-controls-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.field {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: lightgreen;
    border-radius: 50%;
    margin-bottom: 15px;
}

.base {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 1px solid black;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7em;
    cursor: pointer;
}

.runner {
    background-color: orange;
    border-color: darkorange;
}

.home {
    bottom: 5px;
    left: 50%;
}

.first {
    bottom: 50%;
    left: calc(50% + 55px);
}

.second {
    top: 5px;
    left: 50%;
}

.third {
    bottom: 50%;
    left: calc(50% - 55px);
}

#reset-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f44336;
    color: white;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 0;
    z-index: 2;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.team-status {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85em;
}

.team-status input[type="radio"] {
    margin-right: 3px;
}

.count-yell-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.count-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}

.balls-container, .strikes-container, .outs-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label {
    font-weight: bold;
    width: 50px;
    text-align: right;
    font-size: 0.85em;
}

#balls-count, #strikes-count, #outs-count {
    font-size: 1em;
    width: 15px;
    text-align: center;
}

.increment-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    cursor: pointer;
    border-radius: 5px;
}

.saying-container {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.indicator-container {
    display: flex;
    gap: 3px;
}

.indicator {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

.indicator.active {
    background-color: #ff9800;
}

.yell-container {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Make list items stretch to full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    font-size: 0.9em;
}

.yell-container h2 {
    margin-top: 0;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

.yell-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.yell-container li {
    margin-bottom: 5px; /* Add some space between buttons */
}

.yell-container li:last-child {
    margin-bottom: 0;
}

.yell-button {
    display: block; /* Make the button take the full width of the li */
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd; /* Add a subtle border for separation */
    background-color: #f9f9f9;
    text-align: left; /* Align text within the button */
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    margin: 2px 0; /* Add a little margin around the button */
}

.yell-button:hover {
    background-color: #eee;
}

.yell-button.highlighted {
    background-color: #b3e5fc; /* Light blue highlight */
    font-weight: bold;
}