
.container {
    background-color: var(--gris);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
    text-align: center;
}
.mode-button {
    border: none;
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s, opacity 0.3s;
    width: 80px;
    height: 80px;
    display: inline-block;
    cursor:pointer;
    pointer-events:auto;

}
.stop { background-color: #e74c3c; }
.manual { background-color: white; color: #2d3436; }
.auto { background-color: #3498db; }
.encendido { background-color: #2ecc71; }
.active {
    transform: scale(1.1);
    opacity: 0.9;
    border:5px solid var(--amarillo)
}
.refresh{background-color: var(--dorado1);}
.mode-button:hover {
    transform: scale(1.05);
    opacity: 0.8;
}
.status {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category {
    cursor: pointer;
    background-color: #3b3b3b;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;    
    text-align: left;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    color:var(--amarillo);
    margin-top:10px
}
.arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-left: 2px solid #fdcb6b;
    border-bottom: 2px solid #fdcb6b;
    transform: rotate(45deg); /* Flecha hacia abajo */
    transition: transform 0.3s;
}
.parameter {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #2c3e50;
    border-radius: 0 0 10px 10px;
    width: 100%;
    margin-top: 0px;
    transition: background-color 0.3s;
}
.parameter.visible {
    display: flex;
}
img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.value {
        font-weight: bold;
        color: var(--dorado2);
    }
    @media (max-width: 600px) {
        h1 {
            font-size: 2em;
        }
        .mode-button {
            padding: 15px;
            font-size: 16px;
            width: 70px;
            height: 70px;
        }
        .category {
            font-size: 16px;
        }
        .parameter {
            font-size: 14px;
            color:var(#FFFFFF)
        }
    }

.buttons_ {
    background-color: var(--gris);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.select_button {
    cursor:pointer;
    background-color: var(--gris);
    padding: 15px 20px;
    border-radius: 10px;
    width: 200px;
    margin: 10px 0;
    text-align: left;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color:var(--dorado2);
    margin-right:5px;
    
}

.medidas {
    display:flex;
    flex-direction:'row';
    width:100%
}


