 

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    font-family: "Poppins", serif;
 
    font-weight: 400;
    font-style: normal;
}
.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
}
.appliance-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.appliance-item button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

    .appliance-item button:hover {
        transform: scale(1.1);
        background-color: #007bff;
        color: white;
    }

.appliance-item i {
    margin-bottom: 10px;
}

#problemInput {
    font-size: 16px;
}

#responseDisplay {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.card {
    border-radius: 10px;
}

.card-body {
    text-align: left;
}

/* Estilização para telas maiores */
.logo-container img {
    max-width: 150px; /* Tamanho padrão do logo */
}

.text-containerheader h1 {
    font-size: 2rem; /* Tamanho padrão do texto */
}

.text-containerheader span {
    font-size: 1rem; /* Tamanho padrão do texto auxiliar */
}

/* Estilização para telas pequenas */
@media (max-width: 768px) {
    .logo-container img {
        margin-bottom:20px;
        max-width: 70px; /* Logo menor no mobile */
    }

    .text-containerheader h1 {
        font-size: 0.5rem; /* Texto menor no mobile */
    }

    .text-containerheader span {
        font-size: 0.4rem; /* Texto auxiliar menor no mobile */
    }
}