/* --- ESTILOS GENERALES --- */
body { 
    font-family: sans-serif; 
    text-align: center; 
    background: #f0f0f0; 
    padding: 20px;
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.control-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.controls-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Para que se vea bien en móviles */
    gap: 20px;
    margin-bottom: 20px;
}

.checkbox-container {
    text-align: left;
}

.selector-container {
    text-align: center;
}

/* --- ESTILOS DE IMAGEN Y TARJETAS --- */
#reg-image {
    width: 150px;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 10px;
    border: 2px solid #eee;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    min-height: 200px;
}

.poke-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poke-card img { 
    width: 120px; 
    height: 120px; 
    object-fit: contain; 
    margin-bottom: 10px;
}

/* --- BOTÓN --- */
button { 
    padding: 12px 25px; 
    font-size: 18px; 
    cursor: pointer; 
    background: #ff3e3e; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    transition: background 0.3s;
}

button:hover {
    background: #e03535;
}

.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px; 
}

.language-selector button {
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    background: #e03535;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background 0.2s;
}

.language-selector button:hover {
    background: #f0f0f0;
}