/* Genesys Network Admin Dashboard Styles */

body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

/* Status indicators */
.status-online {
    color: #28a745;
}

.status-offline {
    color: #dc3545;
}

.status-busy {
    color: #ffc107;
}

/* Device cards */
.device-card {
    transition: transform 0.2s;
}

.device-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Table improvements */
.table tbody tr {
    transition: background-color 0.2s;
}

.table tbody tr:hover {
    background-color: rgba(0,123,255,0.05);
}

/* Input method badge styles */
.badge-input-accessibility {
    background-color: #28a745;
}

.badge-input-not-ready {
    background-color: #ffc107;
    color: #000;
}

/* Version card */
#current-version-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Action buttons */
.btn-action {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Loading spinner */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Toast customization */
.toast {
    min-width: 300px;
}

/* Tab badges */
.nav-link .badge {
    font-size: 0.7rem;
    vertical-align: middle;
    margin-left: 5px;
}

/* Release file row */
.release-current {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }

    .btn-action {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* Push result messages */
#push-result .alert {
    margin-bottom: 0;
    padding: 0.5rem;
    font-size: 0.875rem;
}

/* Connection status animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-connecting {
    animation: pulse 1.5s infinite;
}
