body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7d4;
    text-align: center;
}
header {
    background-color: #a7e063;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
    text-align: left;
}
.header-link {
    text-decoration: none;
    color: #2e7d32;
}
#pokemon-guess {
    width: 200px;
    padding: 5px;
    margin-top: 10px;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.stats p {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}
.correct {
    background-color: lightgreen;
}
.wrong {
    background-color: lightcoral;
}
.highlight {
    background-color: yellow;
}
.guess-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}
.suggestions {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: relative;
    background: white;
    z-index: 1000;
    margin-top: 5px;
}
.suggestion-item {
    padding: 5px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f0f0f0;
}
.arrow {
    font-size: 1.2em;
}
#developer-info {
    margin-top: 20px;
    font-weight: bold;
}
#current-pokemon {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}
#info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
#info-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    width: 300px;
}
#close-info {
    cursor: pointer;
    color: red;
    float: right;
}
#hidden-link {
    display: none;
}
#info-button {
    position: absolute;
    top: 70px;
    left: 20px;
    padding: 10px 15px;
    background-color: #a7e063;
    border: none;
    color: #2e7d32;
    font-weight: bold;
    cursor: pointer;
}
.input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
#re-roll-button {
    margin-right: 10px;
}