:root {
    --afip-blue: #0056b3;
}

body {
    background-color: #f4f7f6;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.navbar {
    background-color: var(--afip-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,.05);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    padding: 1.25rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.log-viewer {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    height: 400px;
    overflow-y: auto;
    line-height: 1.6;
}

.log-entry {
    border-left: 3px solid #444;
    padding-left: 10px;
    margin-bottom: 8px;
}

.btn-primary {
    background-color: var(--afip-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-1px);
}
