body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #0c0c0c;
    color: #ddd;
    height: 100vh;
    overflow: hidden;
}

/* --- Topbar --- */
#topbar {
    height: 75px;
    background-color: #111;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #1f1f1f;
    padding-left: 20px;
    box-sizing: border-box;
}

#topbar #logo {
    height: 50px;
    width: auto;
    user-select: none;
}

/* --- Layout --- */
#layout {
    display: flex;
    height: calc(100vh - 75px);
}

/* --- Sidebar --- */
#sidebar {
    width: 150px;
    background-color: #141414;
    border-right: 2px solid #1f1f1f;
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Kategorien */
.category {
    margin-bottom: 25px;
}

.cat-title {
    font-size: 0.9em;
    color: #72e0a9;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #1f1f1f;
    padding-bottom: 4px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 8px;
  background: #444;           /* neutral */
  box-shadow: 0 0 4px rgba(0,0,0,.4);
  vertical-align: middle;
  transition: background 0.3s, box-shadow 0.3s;
}

.status-live {
  background: #0f0;
  box-shadow: 0 0 6px #0f0;
}

.status-off {
  background: #900;
  box-shadow: 0 0 6px #900;
}


#sidebar nav a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 8px 0;
    font-size: 0.95em;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

#sidebar nav a:hover {
    color: #72e0a9;
    padding-left: 6px;
}

/* Die unterste Kategorie bleibt immer unten */
.category.bottom {
    margin-top: auto;
}

/* --- Main --- */
#main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background-color: #181818;
}
