/* Globális reset és alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background: #f7f9fc;
    color: #333;
}

/* Konténer: mobilra optimalizált, egy képernyőre illeszkedik */
.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Fejléc */
header {
    text-align: center;
    padding: 10px 0;
}
.logo {
    height: 50px;
}
header h1 {
    font-size: 1.8rem;
    color: #0D92BB;
    margin-top: 5px;
}

/* Fő tartalom */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Eszköz kártyák tárolója */
.devices-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Eszköz kártya */
.card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Eszköz neve */
.card h3 {
    font-size: 1.4rem;
    color: #0D92BB;
    margin-bottom: 10px;
}

/* Állapot kijelzés */
.status-display {
    margin-bottom: 15px;
}
.status-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0D92BB;
}

/* Irányító gomb */
.control-btn {
    background-color: #0D92BB;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 0;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.control-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.control-btn:hover:not(:disabled) {
    background-color: #0b7a99;
}

/* Kis információs rész (frissítési idő) */
.heartbeat {
    margin-top: 10px;
}
.heartbeat-text {
    font-size: 0.8rem;
    color: #888;
}

/* Üzenet megjelenítés */
.message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* Lábléc */
footer {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding: 10px 0;
}



/* Beállítások szekció */
.settings {
    margin-top: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
  }
  
  .settings h2 {
    font-size: 1.5rem;
    color: #0D92BB;
    margin-bottom: 10px;
  }
  
  .settings label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
  }
  
  .settings input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  