* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #fee122   ; /* Cambia el color de resaltado a amarillo */
    color: #000000; /* Cambia el color del texto seleccionado */
}

/* Para todos los navegadores */
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* Para WebKit/Blink basados en navegadores como Chrome y Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Espaciado entre los botones */
}

body{
    font-family: "Montserrat", sans-serif;
    margin: 0;
    background-color: #0d0f14;
    color: white;

}

h3{
    font-weight: bold;
}

p{
    color: #313131;
}

#focusys{
    color: #fee122;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[list],
select{
    color: white;
    background-color: #171717;
    border: 1px solid #27272a;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    width: 120px;
}

.section1{
    margin-top: 100px;
}

.calculadora{
    margin: auto;
    width:400px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
   
    margin-bottom: 20px;
    
    
}

.search{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

#item-input{
    width: 200px;
}

#focus-result{
    background-color: #171717;
    border: 1px solid #fee122;
    color: #fee122;
    font-weight: bold;
}

#focus-result:hover{
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.35s;
}

#item-image{
    width: 100px;
}

.item-image{
    width: 50px;
}

.spec{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: auto;
   
    
   
 
}

.spec label{
    width: 40%;
}


.focus-result{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}


.spec-bonus{
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    max-width: 200px;
    margin: auto;
    gap: 5px;

}





