/* Estilos Base Exitomas */
body { 
    background-color: #f0f2f5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

/* Etiquetas MCP */
.mcp-tag { 
    background: #e8f5e8; 
    color: #2e7d32; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}

/* Tarjeta Principal */
.card { 
    border: none; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}

/* Botones Personalizados */
.btn-primary { 
    background-color: #007cba; 
    border: none; 
    transition: background 0.3s ease;
}

.btn-primary:hover { 
    background-color: #005a87; 
}

/* Lista de Documentos */
.list-group-item {
    transition: background 0.2s;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}
