/* Tailwind CSS Compilado - Allianza Blockchain */
/* Este arquivo deve ser gerado executando: npm run build-css */
/* Por enquanto, usando estilos básicos para funcionar */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cores principais */
.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-600 { background-color: #4b5563; }
.bg-gray-500 { background-color: #6b7280; }
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-green-400 { color: #4ade80; }
.text-blue-400 { color: #60a5fa; }
.text-purple-400 { color: #a78bfa; }
.text-red-400 { color: #f87171; }
.text-yellow-400 { color: #fbbf24; }

/* Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.min-h-screen { min-height: 100vh; }

/* Flexbox */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Typography */
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Buttons */
.btn-back {
    display: inline-block;
    padding: 8px 16px;
    background: #374151;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-back:hover {
    background: #4b5563;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

.status-online { 
    background: #10b981; 
    color: white; 
}

.status-offline { 
    background: #ef4444; 
    color: white; 
}

.chain-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    margin: 2px;
}

/* Cards */
.rounded-lg { border-radius: 0.5rem; }
.rounded { border-radius: 0.25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

/* Spacing */
.space-y-3 > * + * { margin-top: 0.75rem; }

/* Utilities */
.hidden { display: none; }
.w-full { width: 100%; }
.max-w-6xl { max-width: 72rem; }
.max-w-2xl { max-width: 42rem; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }

/* Fixed positioning */
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* Opacity */
.bg-opacity-75 { background-color: rgba(0, 0, 0, 0.75); }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }

/* Borders */
.border { border-width: 1px; }
.border-red-600 { border-color: #dc2626; }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Hover states */
.hover\:bg-gray-500:hover { background-color: #6b7280; }
.hover\:bg-gray-600:hover { background-color: #4b5563; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:text-white:hover { color: #ffffff; }

/* Responsive */
@media (max-width: 768px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}

/* Modal improvements */
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words { word-break: break-word; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-700 { border-color: #374151; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.justify-end { justify-content: flex-end; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.border { border-width: 1px; }
.max-h-96 { max-height: 24rem; }
.group:hover .group-hover\:text-white { color: #ffffff; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }
.mr-1\.5 { margin-right: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.min-w-\[140px\] { min-width: 140px; }
.gap-3 { gap: 0.75rem; }
