


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: #b0cfe0;
    color: #333;
    gap: 30px;
}

#card {
    background: #fff;
    border: 3px solid #c8a415;
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

#card h2 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

#searchBar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

#searchInput {
    width: 260px;
    font-size: 1.05rem;
}

.hidden {
    display: none;
}

#pokemonImage {
    width: 280px;
    height: 280px;
    image-rendering: pixelated;
    display: block;
    margin: 10px auto;
}

#pokemonAudio {
    margin: 10px 0;
}

.moveSelectionPanel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px auto;
    max-width: 420px;
}

.moveSelectionPanel select {
    font-size: 1.05rem;
}

#whoIChose {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border: 2px solid #000;
}

#whoIChose td {
    border: 2px solid #000;
    padding: 10px;
    vertical-align: middle;
}

#whoIChose td.team-sprite {
    width: 96px;
    text-align: center;
}

#whoIChose td.team-sprite img {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
}

#whoIChose td.team-moves li {
    font-size: 1rem;
    padding: 1px 0;
    list-style: none;
    padding-left: 24px;
}
