/* Status indicators styling */
.status-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 8px;
    max-width: 300px;
}

.status-indicator {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.connected::before {
    background-color: #4CAF50;
}

.status-indicator.disconnected::before {
    background-color: #f44336;
}

.status-indicator.warning::before {
    background-color: #ff9800;
}

.status-indicator.error::before {
    background-color: #f44336;
}

.disk-usage-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 4px 0;
    overflow: hidden;
}

.disk-usage-fill {
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.warning .disk-usage-fill {
    background: #ff9800;
}

.disk-usage-text {
    font-size: 11px;
    opacity: 0.9;
}

#error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
