@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; @layer base { * { @apply border-gray-200; } body { @apply bg-gray-50 text-gray-900 font-sans antialiased; font-family: 'Inter', sans-serif; } } @layer components { .btn { @apply inline-flex items-center justify-center px-4 py-2 text-sm font-medium rounded-md transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2 disabled:opacity-50 disabled:cursor-not-allowed; } .btn-primary { @apply btn bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500; } .btn-secondary { @apply btn bg-gray-200 text-gray-900 hover:bg-gray-300 focus:ring-gray-500; } .btn-success { @apply btn bg-success-600 text-white hover:bg-success-700 focus:ring-success-500; } .btn-warning { @apply btn bg-warning-600 text-white hover:bg-warning-700 focus:ring-warning-500; } .btn-danger { @apply btn bg-danger-600 text-white hover:bg-danger-700 focus:ring-danger-500; } .btn-ghost { @apply btn bg-transparent text-gray-700 hover:bg-gray-100 focus:ring-gray-500; } .card { @apply bg-white rounded-lg shadow-sm border border-gray-200 p-6; } .badge { @apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium; } .badge-success { @apply badge bg-success-100 text-success-800; } .badge-warning { @apply badge bg-warning-100 text-warning-800; } .badge-danger { @apply badge bg-danger-100 text-danger-800; } .badge-info { @apply badge bg-blue-100 text-blue-800; } .table { @apply min-w-full divide-y divide-gray-200; } .table-header { @apply bg-gray-50 px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider; } .table-cell { @apply px-6 py-4 whitespace-nowrap text-sm text-gray-900; } .table-row { @apply bg-white hover:bg-gray-50; } .terminal { @apply bg-gray-900 text-green-400 font-mono text-sm p-4 rounded-lg overflow-x-auto; } .terminal-prompt { @apply text-blue-400; } .terminal-command { @apply text-white; } .terminal-output { @apply text-gray-300; } .hierarchy-tree { @apply border-l-2 border-gray-200 ml-4 pl-4; } .hierarchy-item { @apply flex items-center space-x-2 py-1; } .hierarchy-toggle { @apply w-4 h-4 text-gray-500 hover:text-gray-700 cursor-pointer; } }