.shelly-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  margin-top: 12px;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Alap (desktop) */
.shelly-left, .shelly-right {
  flex: 0 0 110px;
}
.shelly-left {
  flex: 0 0 110px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shelly-device-img {
  border-radius: 0px;
 border: 10px solid var(--card);
}

.shelly-power-btn {
  width: 85px;
  cursor: pointer;
}
.shelly-middle {
    padding: 0 10px 0 10px;
    width: 100%;
  }

/* Mobil reszponzív */
@media (max-width: 600px) {
  .shelly-left, .shelly-right {
    flex: 0 0 80px;   /* kisebb szélesség */
  }
  .shelly-device-img {
    max-height: 80px; /* kisebb ikon */
	border: 10px solid var(--card);
    
  }
  .shelly-power-btn {
    width: 60px;      /* kisebb gomb */
	  cursor: pointer;
    
  }
  .shelly-middle {
    padding: 0 10px 0 10px;
    width: 100%;
  }
  .shelly-data {
    font-size: 12px;
	margin: 5px 0px;
  }
  .shelly-title, .wave-text {
    font-size: 14px;
  }
}


