/* ClusterOne Custom Styles */

/* Sidebar branding */
.sidebar-brand {
    font-weight: 700;
}

/* Server selector in sidebar */
.server-selector {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-selector select {
    font-size: 0.85rem;
}

/* Dashboard info cards */
.info-card .card-body {
    padding: 1.25rem;
}

.info-card .info-card-value {
    font-size: 2rem;
    font-weight: 700;
}

.info-card .info-card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Status badges */
.badge-running {
    background-color: #28a745;
}

.badge-stopped {
    background-color: #dc3545;
}

.badge-paused {
    background-color: #ffc107;
    color: #212529;
}

.badge-unknown {
    background-color: #6c757d;
}

/* Resource usage bars */
.resource-bar {
    height: 8px;
    border-radius: 4px;
}

/* Console container */
.console-container {
    width: 100%;
    height: 600px;
    background: #000;
    border-radius: 4px;
}

/* Task status indicator */
.task-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.task-status .spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Action buttons in tables */
.table .btn-group .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

/* Auth page styling */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

/* Responsive table */
.table-responsive {
    border-radius: 0.375rem;
}

/* Loading overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0.375rem;
}
