body {
    font-family: 'Roboto', 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 a {
    color: #2e7d32;
    text-decoration: none;
    display: block;
    height: 100%;
}
label {
    font-size: 18px;
    margin: 10px 0;
}
select, button, input {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    border: 2px solid #ccc;
    font-family: 'Roboto', sans-serif;
}
#game-container {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.pokemon-slot {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px;
    background-color: #f2f2f2;
    font-size: 12px;
}
#timer {
    font-size: 20px;
    margin-top: 10px;
}
.suggestions {
    background: white;
    border: 1px solid #ccc;
    width: 200px;
    max-height: 100px;
    overflow-y: auto;
    position: relative;
    margin: auto;
    font-family: 'Roboto', sans-serif;
}
.suggestions div {
    padding: 5px;
    cursor: pointer;
}
.suggestions div:hover {
    background: #e0e0e0;
}
#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;
}