body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2e;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.tarjeta {
    background-color: #2b2b3d;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    width: 320px;
    text-align: center;
}

.input-contenedor {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 10px;
    border: 1px solid #44445c;
    border-radius: 6px;
    background-color: #1e1e2e;
    color: white;
    outline: none;
}

button {
    background-color: #ff9f43;
    border: none;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.resultado-contenedor {
    background-color: #1e1e2e;
    padding: 15px;
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.temperatura {
    font-size: 36px;
    font-weight: bold;
    color: #00d2d3;
    margin: 10px 0;
}

.error {
    color: #ee5253;
}

.instruccion {
    color: #8888a0;
    font-size: 14px;
}
.icono-clima {
    font-size: 64px;
    margin: 10px 0 5px 0;
}

.estado-texto {
    font-size: 16px;
    color: #00d2d3;
    font-weight: bold;
}