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

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.badge {
    font-size: 0.8em;
}

.btn {
    border-radius: 0.375rem;
}

.alert {
    border-radius: 0.5rem;
}

.text-muted {
    color: #6c757d !important;
}

.fa-dice-d20 {
    color: #ff6600;
}

.environment-card {
    transition: all 0.3s ease;
}

.environment-card:hover {
    transform: scale(1.02);
}

.status-running {
    color: #198754;
}

.status-paused {
    color: #ffc107;
}

.status-stopped {
    color: #6c757d;
}

.status-error {
    color: #dc3545;
}

.btn-group-actions .btn {
    margin: 0 2px;
}

@media (max-width: 768px) {
    .btn-group-actions {
        flex-direction: column;
    }

    .btn-group-actions .btn {
        margin: 2px 0;
        width: 100%;
    }
}