/* Pozadí celé stránky */
body {
    background: radial-gradient(circle at top, #1f2933, #0d0e11);
}

/* Skleněné kartičky */
.card {
    backdrop-filter: blur(10px);
}

/* Stavová tečka (online/offline) */
.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

/* Tlačítka pro žaluzie */
.btn-small {
    font-size: 11px;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background-color: transparent;
    color: #e5e7eb;
    cursor: pointer;
}

.btn-small:hover {
    background-color: rgba(148, 163, 184, 0.2);
}

/* Log box */
.log-box {
    font-size: 11px;
    background-color: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(30, 64, 175, 0.5);
    border-radius: 0.75rem;
    padding: 0.75rem;
    max-height: 13rem;
    overflow: auto;
    white-space: pre-wrap;
}
