#tczew-live-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 99999;
    font-family: sans-serif;
    font-size: 13px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.tczew-header {
    background: #004085; /* Granatowy */
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tczew-minimize {
    font-weight: bold;
    cursor: pointer;
}

#tczew-content {
    background: #fff;
}

.tczew-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.tczew-table th {
    text-align: left;
    background: #f8f9fa;
    padding: 8px;
    font-size: 11px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.tczew-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.tczew-badge {
    background: #333;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.tczew-dest {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    display: block;
}

.tczew-urgent {
    color: #dc3545; /* Czerwony */
    font-weight: bold;
}

.tczew-footer {
    font-size: 10px;
    color: #999;
    text-align: right;
    padding: 5px 10px;
    background: #fcfcfc;
}

.tczew-loader, .tczew-error, .tczew-empty {
    padding: 15px;
    text-align: center;
    color: #777;
}